bachelor/bachelorarbeit/flamegraph_btreemap.svg
2024-05-17 15:26:56 +02:00

491 lines
79 KiB
XML

<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg version="1.1" width="1200" height="774" onload="init(evt)" viewBox="0 0 1200 774" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:fg="http://github.com/jonhoo/inferno"><!--Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples.--><!--NOTES: --><defs><linearGradient id="background" y1="0" y2="1" x1="0" x2="0"><stop stop-color="#eeeeee" offset="5%"/><stop stop-color="#eeeeb0" offset="95%"/></linearGradient></defs><style type="text/css">
text { font-family:monospace; font-size:12px }
#title { text-anchor:middle; font-size:17px; }
#matched { text-anchor:end; }
#search { text-anchor:end; opacity:0.1; cursor:pointer; }
#search:hover, #search.show { opacity:1; }
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
#unzoom { cursor:pointer; }
#frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
.hide { display:none; }
.parent { opacity:0.5; }
</style><script type="text/ecmascript"><![CDATA[
var nametype = 'Function:';
var fontsize = 12;
var fontwidth = 0.59;
var xpad = 10;
var inverted = false;
var searchcolor = 'rgb(230,0,230)';
var fluiddrawing = true;
var truncate_text_right = false;
]]><![CDATA["use strict";
var details, searchbtn, unzoombtn, matchedtxt, svg, searching, frames, known_font_width;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
unzoombtn = document.getElementById("unzoom");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
frames = document.getElementById("frames");
known_font_width = get_monospace_width(frames);
total_samples = parseInt(frames.attributes.total_samples.value);
searching = 0;
// Use GET parameters to restore a flamegraph's state.
var restore_state = function() {
var params = get_params();
if (params.x && params.y)
zoom(find_group(document.querySelector('[*|x="' + params.x + '"][y="' + params.y + '"]')));
if (params.s)
search(params.s);
};
if (fluiddrawing) {
// Make width dynamic so the SVG fits its parent's width.
svg.removeAttribute("width");
// Edge requires us to have a viewBox that gets updated with size changes.
var isEdge = /Edge\/\d./i.test(navigator.userAgent);
if (!isEdge) {
svg.removeAttribute("viewBox");
}
var update_for_width_change = function() {
if (isEdge) {
svg.attributes.viewBox.value = "0 0 " + svg.width.baseVal.value + " " + svg.height.baseVal.value;
}
// Keep consistent padding on left and right of frames container.
frames.attributes.width.value = svg.width.baseVal.value - xpad * 2;
// Text truncation needs to be adjusted for the current width.
update_text_for_elements(frames.children);
// Keep search elements at a fixed distance from right edge.
var svgWidth = svg.width.baseVal.value;
searchbtn.attributes.x.value = svgWidth - xpad;
matchedtxt.attributes.x.value = svgWidth - xpad;
};
window.addEventListener('resize', function() {
update_for_width_change();
});
// This needs to be done asynchronously for Safari to work.
setTimeout(function() {
unzoom();
update_for_width_change();
restore_state();
}, 0);
} else {
restore_state();
}
}
// event listeners
window.addEventListener("click", function(e) {
var target = find_group(e.target);
if (target) {
if (target.nodeName == "a") {
if (e.ctrlKey === false) return;
e.preventDefault();
}
if (target.classList.contains("parent")) unzoom();
zoom(target);
// set parameters for zoom state
var el = target.querySelector("rect");
if (el && el.attributes && el.attributes.y && el.attributes["fg:x"]) {
var params = get_params()
params.x = el.attributes["fg:x"].value;
params.y = el.attributes.y.value;
history.replaceState(null, null, parse_params(params));
}
}
else if (e.target.id == "unzoom") {
unzoom();
// remove zoom state
var params = get_params();
if (params.x) delete params.x;
if (params.y) delete params.y;
history.replaceState(null, null, parse_params(params));
}
else if (e.target.id == "search") search_prompt();
}, false)
// mouse-over for info
// show
window.addEventListener("mouseover", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = nametype + " " + g_to_text(target);
}, false)
// clear
window.addEventListener("mouseout", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = ' ';
}, false)
// ctrl-F for search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
}, false)
// functions
function get_params() {
var params = {};
var paramsarr = window.location.search.substr(1).split('&');
for (var i = 0; i < paramsarr.length; ++i) {
var tmp = paramsarr[i].split("=");
if (!tmp[0] || !tmp[1]) continue;
params[tmp[0]] = decodeURIComponent(tmp[1]);
}
return params;
}
function parse_params(params) {
var uri = "?";
for (var key in params) {
uri += key + '=' + encodeURIComponent(params[key]) + '&';
}
if (uri.slice(-1) == "&")
uri = uri.substring(0, uri.length - 1);
if (uri == '?')
uri = window.location.href.split('?')[0];
return uri;
}
function find_child(node, selector) {
var children = node.querySelectorAll(selector);
if (children.length) return children[0];
return;
}
function find_group(node) {
var parent = node.parentElement;
if (!parent) return;
if (parent.id == "frames") return node;
return find_group(parent);
}
function orig_save(e, attr, val) {
if (e.attributes["fg:orig_" + attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("fg:orig_" + attr, val);
}
function orig_load(e, attr) {
if (e.attributes["fg:orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["fg:orig_" + attr].value;
e.removeAttribute("fg:orig_" + attr);
}
function g_to_text(e) {
var text = find_child(e, "title").firstChild.nodeValue;
return (text)
}
function g_to_func(e) {
var func = g_to_text(e);
// if there's any manipulation we want to do to the function
// name before it's searched, do it here before returning.
return (func);
}
function get_monospace_width(frames) {
// Given the id="frames" element, return the width of text characters if
// this is a monospace font, otherwise return 0.
text = find_child(frames.children[0], "text");
originalContent = text.textContent;
text.textContent = "!";
bangWidth = text.getComputedTextLength();
text.textContent = "W";
wWidth = text.getComputedTextLength();
text.textContent = originalContent;
if (bangWidth === wWidth) {
return bangWidth;
} else {
return 0;
}
}
function update_text_for_elements(elements) {
// In order to render quickly in the browser, you want to do one pass of
// reading attributes, and one pass of mutating attributes. See
// https://web.dev/avoid-large-complex-layouts-and-layout-thrashing/ for details.
// Fall back to inefficient calculation, if we're variable-width font.
// TODO This should be optimized somehow too.
if (known_font_width === 0) {
for (var i = 0; i < elements.length; i++) {
update_text(elements[i]);
}
return;
}
var textElemNewAttributes = [];
for (var i = 0; i < elements.length; i++) {
var e = elements[i];
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes.width.value) * frames.attributes.width.value / 100 - 3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
var newX = format_percent((parseFloat(r.attributes.x.value) + (100 * 3 / frames.attributes.width.value)));
// Smaller than this size won't fit anything
if (w < 2 * known_font_width) {
textElemNewAttributes.push([newX, ""]);
continue;
}
// Fit in full text width
if (txt.length * known_font_width < w) {
textElemNewAttributes.push([newX, txt]);
continue;
}
var substringLength = Math.floor(w / known_font_width) - 2;
if (truncate_text_right) {
// Truncate the right side of the text.
textElemNewAttributes.push([newX, txt.substring(0, substringLength) + ".."]);
continue;
} else {
// Truncate the left side of the text.
textElemNewAttributes.push([newX, ".." + txt.substring(txt.length - substringLength, txt.length)]);
continue;
}
}
console.assert(textElemNewAttributes.length === elements.length, "Resize failed, please file a bug at https://github.com/jonhoo/inferno/");
// Now that we know new textContent, set it all in one go so we don't refresh a bazillion times.
for (var i = 0; i < elements.length; i++) {
var e = elements[i];
var values = textElemNewAttributes[i];
var t = find_child(e, "text");
t.attributes.x.value = values[0];
t.textContent = values[1];
}
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes.width.value) * frames.attributes.width.value / 100 - 3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes.x.value = format_percent((parseFloat(r.attributes.x.value) + (100 * 3 / frames.attributes.width.value)));
// Smaller than this size won't fit anything
if (w < 2 * fontsize * fontwidth) {
t.textContent = "";
return;
}
t.textContent = txt;
// Fit in full text width
if (t.getComputedTextLength() < w)
return;
if (truncate_text_right) {
// Truncate the right side of the text.
for (var x = txt.length - 2; x > 0; x--) {
if (t.getSubStringLength(0, x + 2) <= w) {
t.textContent = txt.substring(0, x) + "..";
return;
}
}
} else {
// Truncate the left side of the text.
for (var x = 2; x < txt.length; x++) {
if (t.getSubStringLength(x - 2, txt.length) <= w) {
t.textContent = ".." + txt.substring(x, txt.length);
return;
}
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.tagName == "rect") {
e.attributes.x.value = format_percent(100 * parseInt(e.attributes["fg:x"].value) / total_samples);
e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / total_samples);
}
if (e.childNodes == undefined) return;
for(var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_reset(c[i]);
}
}
function zoom_child(e, x, zoomed_width_samples) {
if (e.tagName == "text") {
var parent_x = parseFloat(find_child(e.parentNode, "rect[x]").attributes.x.value);
e.attributes.x.value = format_percent(parent_x + (100 * 3 / frames.attributes.width.value));
} else if (e.tagName == "rect") {
e.attributes.x.value = format_percent(100 * (parseInt(e.attributes["fg:x"].value) - x) / zoomed_width_samples);
e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / zoomed_width_samples);
}
if (e.childNodes == undefined) return;
for(var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_child(c[i], x, zoomed_width_samples);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes.x != undefined) {
e.attributes.x.value = "0.0%";
}
if (e.attributes.width != undefined) {
e.attributes.width.value = "100.0%";
}
}
if (e.childNodes == undefined) return;
for(var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_parent(c[i]);
}
}
function zoom(node) {
var attr = find_child(node, "rect").attributes;
var width = parseInt(attr["fg:w"].value);
var xmin = parseInt(attr["fg:x"].value);
var xmax = xmin + width;
var ymin = parseFloat(attr.y.value);
unzoombtn.classList.remove("hide");
var el = frames.children;
var to_update_text = [];
for (var i = 0; i < el.length; i++) {
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseInt(a["fg:x"].value);
var ew = parseInt(a["fg:w"].value);
// Is it an ancestor
if (!inverted) {
var upstack = parseFloat(a.y.value) > ymin;
} else {
var upstack = parseFloat(a.y.value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew) >= xmax) {
e.classList.add("parent");
zoom_parent(e);
to_update_text.push(e);
}
// not in current path
else
e.classList.add("hide");
}
// Children maybe
else {
// no common path
if (ex < xmin || ex >= xmax) {
e.classList.add("hide");
}
else {
zoom_child(e, xmin, width);
to_update_text.push(e);
}
}
}
update_text_for_elements(to_update_text);
}
function unzoom() {
unzoombtn.classList.add("hide");
var el = frames.children;
for(var i = 0; i < el.length; i++) {
el[i].classList.remove("parent");
el[i].classList.remove("hide");
zoom_reset(el[i]);
}
update_text_for_elements(el);
}
// search
function reset_search() {
var el = document.querySelectorAll("#frames rect");
for (var i = 0; i < el.length; i++) {
orig_load(el[i], "fill")
}
var params = get_params();
delete params.s;
history.replaceState(null, null, parse_params(params));
}
function search_prompt() {
if (!searching) {
var term = prompt("Enter a search term (regexp " +
"allowed, eg: ^ext4_)", "");
if (term != null) {
search(term)
}
} else {
reset_search();
searching = 0;
searchbtn.classList.remove("show");
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.classList.add("hide");
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
var re = new RegExp(term);
var el = frames.children;
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
// Skip over frames which are either not visible, or below the zoomed-to frame
if (e.classList.contains("hide") || e.classList.contains("parent")) {
continue;
}
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = parseInt(rect.attributes["fg:w"].value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseInt(rect.attributes["fg:x"].value);
orig_save(rect, "fill");
rect.attributes.fill.value = searchcolor;
// remember matches
if (matches[x] == undefined) {
matches[x] = w;
} else {
if (w > matches[x]) {
// overwrite with parent
matches[x] = w;
}
}
searching = 1;
}
}
if (!searching)
return;
var params = get_params();
params.s = term;
history.replaceState(null, null, parse_params(params));
searchbtn.classList.add("show");
searchbtn.firstChild.nodeValue = "Reset Search";
// calculate percent matched, excluding vertical overlap
var count = 0;
var lastx = -1;
var lastw = 0;
var keys = Array();
for (k in matches) {
if (matches.hasOwnProperty(k))
keys.push(k);
}
// sort the matched frames by their x location
// ascending, then width descending
keys.sort(function(a, b){
return a - b;
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
for (var k in keys) {
var x = parseInt(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.classList.remove("hide");
var pct = 100 * count / maxwidth;
if (pct != 100) pct = pct.toFixed(1);
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
function format_percent(n) {
return n.toFixed(4) + "%";
}
]]></script><rect x="0" y="0" width="100%" height="774" fill="url(#background)"/><text id="title" fill="rgb(0,0,0)" x="50.0000%" y="24.00">Flame Graph</text><text id="details" fill="rgb(0,0,0)" x="10" y="757.00"> </text><text id="unzoom" class="hide" fill="rgb(0,0,0)" x="10" y="24.00">Reset Zoom</text><text id="search" fill="rgb(0,0,0)" x="1190" y="24.00">Search</text><text id="matched" fill="rgb(0,0,0)" x="1190" y="757.00"> </text><svg id="frames" x="10" width="1180" total_samples="385"><g><title>__cos_fma (1 samples, 0.26%)</title><rect x="0.0000%" y="677" width="0.2597%" height="15" fill="rgb(227,0,7)" fg:x="0" fg:w="1"/><text x="0.2500%" y="687.50"></text></g><g><title>[[heap]] (2 samples, 0.52%)</title><rect x="0.0000%" y="693" width="0.5195%" height="15" fill="rgb(217,0,24)" fg:x="0" fg:w="2"/><text x="0.2500%" y="703.50"></text></g><g><title>bachelorarbeit::calc::omnes (1 samples, 0.26%)</title><rect x="0.2597%" y="677" width="0.2597%" height="15" fill="rgb(221,193,54)" fg:x="1" fg:w="1"/><text x="0.5097%" y="687.50"></text></g><g><title>bachelorarbeit::calc::integrate_complex (1 samples, 0.26%)</title><rect x="0.2597%" y="661" width="0.2597%" height="15" fill="rgb(248,212,6)" fg:x="1" fg:w="1"/><text x="0.5097%" y="671.50"></text></g><g><title>bachelorarbeit::calc::omnes::_{{closure}} (1 samples, 0.26%)</title><rect x="0.2597%" y="645" width="0.2597%" height="15" fill="rgb(208,68,35)" fg:x="1" fg:w="1"/><text x="0.5097%" y="655.50"></text></g><g><title>bachelorarbeit::calc::omnes_integrand (1 samples, 0.26%)</title><rect x="0.2597%" y="629" width="0.2597%" height="15" fill="rgb(232,128,0)" fg:x="1" fg:w="1"/><text x="0.5097%" y="639.50"></text></g><g><title>std::f64::&lt;impl f64&gt;::cos (1 samples, 0.26%)</title><rect x="0.2597%" y="613" width="0.2597%" height="15" fill="rgb(207,160,47)" fg:x="1" fg:w="1"/><text x="0.5097%" y="623.50"></text></g><g><title>[[stack]] (1 samples, 0.26%)</title><rect x="0.5195%" y="693" width="0.2597%" height="15" fill="rgb(228,23,34)" fg:x="2" fg:w="1"/><text x="0.7695%" y="703.50"></text></g><g><title>bachelorarbeit::calc::delta_with_lut (1 samples, 0.26%)</title><rect x="0.5195%" y="677" width="0.2597%" height="15" fill="rgb(218,30,26)" fg:x="2" fg:w="1"/><text x="0.7695%" y="687.50"></text></g><g><title>&lt;std::io::buffered::bufreader::BufReader&lt;R&gt; as std::io::Read&gt;::read (1 samples, 0.26%)</title><rect x="0.7792%" y="677" width="0.2597%" height="15" fill="rgb(220,122,19)" fg:x="3" fg:w="1"/><text x="1.0292%" y="687.50"></text></g><g><title>[unknown] (1 samples, 0.26%)</title><rect x="1.0390%" y="677" width="0.2597%" height="15" fill="rgb(250,228,42)" fg:x="4" fg:w="1"/><text x="1.2890%" y="687.50"></text></g><g><title>[unknown] (1 samples, 0.26%)</title><rect x="1.0390%" y="661" width="0.2597%" height="15" fill="rgb(240,193,28)" fg:x="4" fg:w="1"/><text x="1.2890%" y="671.50"></text></g><g><title>[unknown] (1 samples, 0.26%)</title><rect x="1.0390%" y="645" width="0.2597%" height="15" fill="rgb(216,20,37)" fg:x="4" fg:w="1"/><text x="1.2890%" y="655.50"></text></g><g><title>[unknown] (1 samples, 0.26%)</title><rect x="1.0390%" y="629" width="0.2597%" height="15" fill="rgb(206,188,39)" fg:x="4" fg:w="1"/><text x="1.2890%" y="639.50"></text></g><g><title>[unknown] (1 samples, 0.26%)</title><rect x="1.0390%" y="613" width="0.2597%" height="15" fill="rgb(217,207,13)" fg:x="4" fg:w="1"/><text x="1.2890%" y="623.50"></text></g><g><title>[unknown] (1 samples, 0.26%)</title><rect x="1.0390%" y="597" width="0.2597%" height="15" fill="rgb(231,73,38)" fg:x="4" fg:w="1"/><text x="1.2890%" y="607.50"></text></g><g><title>[unknown] (1 samples, 0.26%)</title><rect x="1.0390%" y="581" width="0.2597%" height="15" fill="rgb(225,20,46)" fg:x="4" fg:w="1"/><text x="1.2890%" y="591.50"></text></g><g><title>[unknown] (1 samples, 0.26%)</title><rect x="1.0390%" y="565" width="0.2597%" height="15" fill="rgb(210,31,41)" fg:x="4" fg:w="1"/><text x="1.2890%" y="575.50"></text></g><g><title>[unknown] (1 samples, 0.26%)</title><rect x="1.0390%" y="549" width="0.2597%" height="15" fill="rgb(221,200,47)" fg:x="4" fg:w="1"/><text x="1.2890%" y="559.50"></text></g><g><title>[unknown] (1 samples, 0.26%)</title><rect x="1.0390%" y="533" width="0.2597%" height="15" fill="rgb(226,26,5)" fg:x="4" fg:w="1"/><text x="1.2890%" y="543.50"></text></g><g><title>__cos_fma (2 samples, 0.52%)</title><rect x="1.2987%" y="677" width="0.5195%" height="15" fill="rgb(249,33,26)" fg:x="5" fg:w="2"/><text x="1.5487%" y="687.50"></text></g><g><title>bachelorarbeit::calc::delta_with_lut (4 samples, 1.04%)</title><rect x="1.8182%" y="677" width="1.0390%" height="15" fill="rgb(235,183,28)" fg:x="7" fg:w="4"/><text x="2.0682%" y="687.50"></text></g><g><title>[unknown] (14 samples, 3.64%)</title><rect x="0.7792%" y="693" width="3.6364%" height="15" fill="rgb(221,5,38)" fg:x="3" fg:w="14"/><text x="1.0292%" y="703.50">[unk..</text></g><g><title>bachelorarbeit::calc::omnes (6 samples, 1.56%)</title><rect x="2.8571%" y="677" width="1.5584%" height="15" fill="rgb(247,18,42)" fg:x="11" fg:w="6"/><text x="3.1071%" y="687.50"></text></g><g><title>bachelorarbeit::calc::integrate_complex (3 samples, 0.78%)</title><rect x="3.6364%" y="661" width="0.7792%" height="15" fill="rgb(241,131,45)" fg:x="14" fg:w="3"/><text x="3.8864%" y="671.50"></text></g><g><title>bachelorarbeit::calc::omnes::_{{closure}} (3 samples, 0.78%)</title><rect x="3.6364%" y="645" width="0.7792%" height="15" fill="rgb(249,31,29)" fg:x="14" fg:w="3"/><text x="3.8864%" y="655.50"></text></g><g><title>bachelorarbeit::calc::omnes_integrand (3 samples, 0.78%)</title><rect x="3.6364%" y="629" width="0.7792%" height="15" fill="rgb(225,111,53)" fg:x="14" fg:w="3"/><text x="3.8864%" y="639.50"></text></g><g><title>std::f64::&lt;impl f64&gt;::cos (1 samples, 0.26%)</title><rect x="4.1558%" y="613" width="0.2597%" height="15" fill="rgb(238,160,17)" fg:x="16" fg:w="1"/><text x="4.4058%" y="623.50"></text></g><g><title>bachelorarbeit::calc::integrate (1 samples, 0.26%)</title><rect x="4.4156%" y="533" width="0.2597%" height="15" fill="rgb(214,148,48)" fg:x="17" fg:w="1"/><text x="4.6656%" y="543.50"></text></g><g><title>bachelorarbeit::calc::phi0::_{{closure}} (1 samples, 0.26%)</title><rect x="4.4156%" y="517" width="0.2597%" height="15" fill="rgb(232,36,49)" fg:x="17" fg:w="1"/><text x="4.6656%" y="527.50"></text></g><g><title>bachelorarbeit::calc::phi0_integrand (1 samples, 0.26%)</title><rect x="4.4156%" y="501" width="0.2597%" height="15" fill="rgb(209,103,24)" fg:x="17" fg:w="1"/><text x="4.6656%" y="511.50"></text></g><g><title>bachelorarbeit::calc::omnes (1 samples, 0.26%)</title><rect x="4.4156%" y="485" width="0.2597%" height="15" fill="rgb(229,88,8)" fg:x="17" fg:w="1"/><text x="4.6656%" y="495.50"></text></g><g><title>bachelorarbeit::calc::integrate_complex (1 samples, 0.26%)</title><rect x="4.4156%" y="469" width="0.2597%" height="15" fill="rgb(213,181,19)" fg:x="17" fg:w="1"/><text x="4.6656%" y="479.50"></text></g><g><title>bachelorarbeit::calc::omnes::_{{closure}} (1 samples, 0.26%)</title><rect x="4.4156%" y="453" width="0.2597%" height="15" fill="rgb(254,191,54)" fg:x="17" fg:w="1"/><text x="4.6656%" y="463.50"></text></g><g><title>bachelorarbeit::calc::omnes_integrand (1 samples, 0.26%)</title><rect x="4.4156%" y="437" width="0.2597%" height="15" fill="rgb(241,83,37)" fg:x="17" fg:w="1"/><text x="4.6656%" y="447.50"></text></g><g><title>num_complex::&lt;impl core::ops::arith::Div&lt;num_complex::Complex&lt;f64&gt;&gt; for f64&gt;::div (1 samples, 0.26%)</title><rect x="4.4156%" y="421" width="0.2597%" height="15" fill="rgb(233,36,39)" fg:x="17" fg:w="1"/><text x="4.6656%" y="431.50"></text></g><g><title>bachelorarbeit::calc::phi0 (2 samples, 0.52%)</title><rect x="4.4156%" y="549" width="0.5195%" height="15" fill="rgb(226,3,54)" fg:x="17" fg:w="2"/><text x="4.6656%" y="559.50"></text></g><g><title>bachelorarbeit::calc::omnes (1 samples, 0.26%)</title><rect x="4.6753%" y="533" width="0.2597%" height="15" fill="rgb(245,192,40)" fg:x="18" fg:w="1"/><text x="4.9253%" y="543.50"></text></g><g><title>bachelorarbeit::calc::integrate_complex (1 samples, 0.26%)</title><rect x="4.6753%" y="517" width="0.2597%" height="15" fill="rgb(238,167,29)" fg:x="18" fg:w="1"/><text x="4.9253%" y="527.50"></text></g><g><title>bachelorarbeit::calc::omnes::_{{closure}} (1 samples, 0.26%)</title><rect x="4.6753%" y="501" width="0.2597%" height="15" fill="rgb(232,182,51)" fg:x="18" fg:w="1"/><text x="4.9253%" y="511.50"></text></g><g><title>bachelorarbeit::calc::omnes_integrand (1 samples, 0.26%)</title><rect x="4.6753%" y="485" width="0.2597%" height="15" fill="rgb(231,60,39)" fg:x="18" fg:w="1"/><text x="4.9253%" y="495.50"></text></g><g><title>num_complex::&lt;impl core::ops::arith::Div&lt;num_complex::Complex&lt;f64&gt;&gt; for f64&gt;::div (1 samples, 0.26%)</title><rect x="4.6753%" y="469" width="0.2597%" height="15" fill="rgb(208,69,12)" fg:x="18" fg:w="1"/><text x="4.9253%" y="479.50"></text></g><g><title>bachelorarbeit::calc::phi0 (1 samples, 0.26%)</title><rect x="6.2338%" y="325" width="0.2597%" height="15" fill="rgb(235,93,37)" fg:x="24" fg:w="1"/><text x="6.4838%" y="335.50"></text></g><g><title>&lt;f64 as core::ops::arith::Div&gt;::div (4 samples, 1.04%)</title><rect x="9.3506%" y="293" width="1.0390%" height="15" fill="rgb(213,116,39)" fg:x="36" fg:w="4"/><text x="9.6006%" y="303.50"></text></g><g><title>&lt;f64 as core::ops::arith::Mul&gt;::mul (1 samples, 0.26%)</title><rect x="10.3896%" y="293" width="0.2597%" height="15" fill="rgb(222,207,29)" fg:x="40" fg:w="1"/><text x="10.6396%" y="303.50"></text></g><g><title>&lt;num_complex::Complex&lt;T&gt; as core::ops::arith::Div&gt;::div (6 samples, 1.56%)</title><rect x="9.3506%" y="309" width="1.5584%" height="15" fill="rgb(206,96,30)" fg:x="36" fg:w="6"/><text x="9.6006%" y="319.50"></text></g><g><title>num_complex::Complex&lt;T&gt;::norm_sqr (1 samples, 0.26%)</title><rect x="10.6494%" y="293" width="0.2597%" height="15" fill="rgb(218,138,4)" fg:x="41" fg:w="1"/><text x="10.8994%" y="303.50"></text></g><g><title>&lt;f64 as core::ops::arith::Mul&gt;::mul (1 samples, 0.26%)</title><rect x="10.6494%" y="277" width="0.2597%" height="15" fill="rgb(250,191,14)" fg:x="41" fg:w="1"/><text x="10.8994%" y="287.50"></text></g><g><title>&lt;num_complex::Complex&lt;T&gt; as num_complex::complex_float::ComplexFloat&gt;::abs (24 samples, 6.23%)</title><rect x="10.9091%" y="309" width="6.2338%" height="15" fill="rgb(239,60,40)" fg:x="42" fg:w="24"/><text x="11.1591%" y="319.50">&lt;num_com..</text></g><g><title>num_complex::Complex&lt;T&gt;::norm (24 samples, 6.23%)</title><rect x="10.9091%" y="293" width="6.2338%" height="15" fill="rgb(206,27,48)" fg:x="42" fg:w="24"/><text x="11.1591%" y="303.50">num_comp..</text></g><g><title>&lt;f64 as num_traits::float::Float&gt;::hypot (24 samples, 6.23%)</title><rect x="10.9091%" y="277" width="6.2338%" height="15" fill="rgb(225,35,8)" fg:x="42" fg:w="24"/><text x="11.1591%" y="287.50">&lt;f64 as ..</text></g><g><title>std::f64::&lt;impl f64&gt;::hypot (24 samples, 6.23%)</title><rect x="10.9091%" y="261" width="6.2338%" height="15" fill="rgb(250,213,24)" fg:x="42" fg:w="24"/><text x="11.1591%" y="271.50">std::f64..</text></g><g><title>__hypot (24 samples, 6.23%)</title><rect x="10.9091%" y="245" width="6.2338%" height="15" fill="rgb(247,123,22)" fg:x="42" fg:w="24"/><text x="11.1591%" y="255.50">__hypot</text></g><g><title>kernel (22 samples, 5.71%)</title><rect x="11.4286%" y="229" width="5.7143%" height="15" fill="rgb(231,138,38)" fg:x="44" fg:w="22"/><text x="11.6786%" y="239.50">kernel</text></g><g><title>[unknown] (1 samples, 0.26%)</title><rect x="16.8831%" y="213" width="0.2597%" height="15" fill="rgb(231,145,46)" fg:x="65" fg:w="1"/><text x="17.1331%" y="223.50"></text></g><g><title>[unknown] (1 samples, 0.26%)</title><rect x="16.8831%" y="197" width="0.2597%" height="15" fill="rgb(251,118,11)" fg:x="65" fg:w="1"/><text x="17.1331%" y="207.50"></text></g><g><title>[unknown] (1 samples, 0.26%)</title><rect x="16.8831%" y="181" width="0.2597%" height="15" fill="rgb(217,147,25)" fg:x="65" fg:w="1"/><text x="17.1331%" y="191.50"></text></g><g><title>[unknown] (1 samples, 0.26%)</title><rect x="16.8831%" y="165" width="0.2597%" height="15" fill="rgb(247,81,37)" fg:x="65" fg:w="1"/><text x="17.1331%" y="175.50"></text></g><g><title>[unknown] (1 samples, 0.26%)</title><rect x="16.8831%" y="149" width="0.2597%" height="15" fill="rgb(209,12,38)" fg:x="65" fg:w="1"/><text x="17.1331%" y="159.50"></text></g><g><title>[unknown] (1 samples, 0.26%)</title><rect x="16.8831%" y="133" width="0.2597%" height="15" fill="rgb(227,1,9)" fg:x="65" fg:w="1"/><text x="17.1331%" y="143.50"></text></g><g><title>[unknown] (1 samples, 0.26%)</title><rect x="16.8831%" y="117" width="0.2597%" height="15" fill="rgb(248,47,43)" fg:x="65" fg:w="1"/><text x="17.1331%" y="127.50"></text></g><g><title>[unknown] (1 samples, 0.26%)</title><rect x="16.8831%" y="101" width="0.2597%" height="15" fill="rgb(221,10,30)" fg:x="65" fg:w="1"/><text x="17.1331%" y="111.50"></text></g><g><title>[unknown] (1 samples, 0.26%)</title><rect x="16.8831%" y="85" width="0.2597%" height="15" fill="rgb(210,229,1)" fg:x="65" fg:w="1"/><text x="17.1331%" y="95.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,Type&gt;::reborrow (1 samples, 0.26%)</title><rect x="18.7013%" y="277" width="0.2597%" height="15" fill="rgb(222,148,37)" fg:x="72" fg:w="1"/><text x="18.9513%" y="287.50"></text></g><g><title>bachelorarbeit::calc::omnes (1 samples, 0.26%)</title><rect x="18.9610%" y="213" width="0.2597%" height="15" fill="rgb(234,67,33)" fg:x="73" fg:w="1"/><text x="19.2110%" y="223.50"></text></g><g><title>alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::Internal&gt;,alloc::collections::btree::node::marker::Edge&gt;::descend (2 samples, 0.52%)</title><rect x="18.9610%" y="261" width="0.5195%" height="15" fill="rgb(247,98,35)" fg:x="73" fg:w="2"/><text x="19.2110%" y="271.50"></text></g><g><title>core::mem::maybe_uninit::MaybeUninit&lt;T&gt;::assume_init_read (2 samples, 0.52%)</title><rect x="18.9610%" y="245" width="0.5195%" height="15" fill="rgb(247,138,52)" fg:x="73" fg:w="2"/><text x="19.2110%" y="255.50"></text></g><g><title>core::ptr::const_ptr::&lt;impl *const T&gt;::read (2 samples, 0.52%)</title><rect x="18.9610%" y="229" width="0.5195%" height="15" fill="rgb(213,79,30)" fg:x="73" fg:w="2"/><text x="19.2110%" y="239.50"></text></g><g><title>core::ptr::read (1 samples, 0.26%)</title><rect x="19.2208%" y="213" width="0.2597%" height="15" fill="rgb(246,177,23)" fg:x="74" fg:w="1"/><text x="19.4708%" y="223.50"></text></g><g><title>alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;,Type&gt;::force (1 samples, 0.26%)</title><rect x="19.4805%" y="261" width="0.2597%" height="15" fill="rgb(230,62,27)" fg:x="75" fg:w="1"/><text x="19.7305%" y="271.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;::force (1 samples, 0.26%)</title><rect x="19.4805%" y="245" width="0.2597%" height="15" fill="rgb(216,154,8)" fg:x="75" fg:w="1"/><text x="19.7305%" y="255.50"></text></g><g><title>&lt;core::iter::adapters::enumerate::Enumerate&lt;I&gt; as core::iter::traits::iterator::Iterator&gt;::next (7 samples, 1.82%)</title><rect x="24.1558%" y="229" width="1.8182%" height="15" fill="rgb(244,35,45)" fg:x="93" fg:w="7"/><text x="24.4058%" y="239.50">&lt;..</text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (7 samples, 1.82%)</title><rect x="24.1558%" y="213" width="1.8182%" height="15" fill="rgb(251,115,12)" fg:x="93" fg:w="7"/><text x="24.4058%" y="223.50">&lt;..</text></g><g><title>&lt;core::ptr::non_null::NonNull&lt;T&gt; as core::cmp::PartialEq&gt;::eq (7 samples, 1.82%)</title><rect x="24.1558%" y="197" width="1.8182%" height="15" fill="rgb(240,54,50)" fg:x="93" fg:w="7"/><text x="24.4058%" y="207.50">&lt;..</text></g><g><title>alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Immut,K,V,Type&gt;::keys (3 samples, 0.78%)</title><rect x="25.9740%" y="229" width="0.7792%" height="15" fill="rgb(233,84,52)" fg:x="100" fg:w="3"/><text x="26.2240%" y="239.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::Ord for u32&gt;::cmp (3 samples, 0.78%)</title><rect x="26.7532%" y="229" width="0.7792%" height="15" fill="rgb(207,117,47)" fg:x="103" fg:w="3"/><text x="27.0032%" y="239.50"></text></g><g><title>[unknown] (1 samples, 0.26%)</title><rect x="27.2727%" y="213" width="0.2597%" height="15" fill="rgb(249,43,39)" fg:x="105" fg:w="1"/><text x="27.5227%" y="223.50"></text></g><g><title>[unknown] (1 samples, 0.26%)</title><rect x="27.2727%" y="197" width="0.2597%" height="15" fill="rgb(209,38,44)" fg:x="105" fg:w="1"/><text x="27.5227%" y="207.50"></text></g><g><title>[unknown] (1 samples, 0.26%)</title><rect x="27.2727%" y="181" width="0.2597%" height="15" fill="rgb(236,212,23)" fg:x="105" fg:w="1"/><text x="27.5227%" y="191.50"></text></g><g><title>[unknown] (1 samples, 0.26%)</title><rect x="27.2727%" y="165" width="0.2597%" height="15" fill="rgb(242,79,21)" fg:x="105" fg:w="1"/><text x="27.5227%" y="175.50"></text></g><g><title>[unknown] (1 samples, 0.26%)</title><rect x="27.2727%" y="149" width="0.2597%" height="15" fill="rgb(211,96,35)" fg:x="105" fg:w="1"/><text x="27.5227%" y="159.50"></text></g><g><title>[unknown] (1 samples, 0.26%)</title><rect x="27.2727%" y="133" width="0.2597%" height="15" fill="rgb(253,215,40)" fg:x="105" fg:w="1"/><text x="27.5227%" y="143.50"></text></g><g><title>[unknown] (1 samples, 0.26%)</title><rect x="27.2727%" y="117" width="0.2597%" height="15" fill="rgb(211,81,21)" fg:x="105" fg:w="1"/><text x="27.5227%" y="127.50"></text></g><g><title>[unknown] (1 samples, 0.26%)</title><rect x="27.2727%" y="101" width="0.2597%" height="15" fill="rgb(208,190,38)" fg:x="105" fg:w="1"/><text x="27.5227%" y="111.50"></text></g><g><title>[unknown] (1 samples, 0.26%)</title><rect x="27.2727%" y="85" width="0.2597%" height="15" fill="rgb(235,213,38)" fg:x="105" fg:w="1"/><text x="27.5227%" y="95.50"></text></g><g><title>alloc::collections::btree::map::BTreeMap&lt;K,V,A&gt;::get (56 samples, 14.55%)</title><rect x="18.7013%" y="293" width="14.5455%" height="15" fill="rgb(237,122,38)" fg:x="72" fg:w="56"/><text x="18.9513%" y="303.50">alloc::collections::bt..</text></g><g><title>alloc::collections::btree::search::&lt;impl alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;&gt;::search_tree (55 samples, 14.29%)</title><rect x="18.9610%" y="277" width="14.2857%" height="15" fill="rgb(244,218,35)" fg:x="73" fg:w="55"/><text x="19.2110%" y="287.50">alloc::collections::bt..</text></g><g><title>alloc::collections::btree::search::&lt;impl alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,Type&gt;&gt;::search_node (52 samples, 13.51%)</title><rect x="19.7403%" y="261" width="13.5065%" height="15" fill="rgb(240,68,47)" fg:x="76" fg:w="52"/><text x="19.9903%" y="271.50">alloc::collections::..</text></g><g><title>alloc::collections::btree::search::&lt;impl alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,Type&gt;&gt;::find_key_index (52 samples, 13.51%)</title><rect x="19.7403%" y="245" width="13.5065%" height="15" fill="rgb(210,16,53)" fg:x="76" fg:w="52"/><text x="19.9903%" y="255.50">alloc::collections::..</text></g><g><title>core::cmp::impls::&lt;impl core::cmp::Ord for u64&gt;::cmp (22 samples, 5.71%)</title><rect x="27.5325%" y="229" width="5.7143%" height="15" fill="rgb(235,124,12)" fg:x="106" fg:w="22"/><text x="27.7825%" y="239.50">core::c..</text></g><g><title>&lt;num_complex::Complex&lt;T&gt; as core::ops::arith::Mul&lt;T&gt;&gt;::mul (1 samples, 0.26%)</title><rect x="34.8052%" y="245" width="0.2597%" height="15" fill="rgb(224,169,11)" fg:x="134" fg:w="1"/><text x="35.0552%" y="255.50"></text></g><g><title>&lt;f64 as core::ops::arith::Mul&gt;::mul (1 samples, 0.26%)</title><rect x="34.8052%" y="229" width="0.2597%" height="15" fill="rgb(250,166,2)" fg:x="134" fg:w="1"/><text x="35.0552%" y="239.50"></text></g><g><title>bachelorarbeit::calc::delta_with_lut (2 samples, 0.52%)</title><rect x="35.5844%" y="149" width="0.5195%" height="15" fill="rgb(242,216,29)" fg:x="137" fg:w="2"/><text x="35.8344%" y="159.50"></text></g><g><title>alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::Internal&gt;,alloc::collections::btree::node::marker::Edge&gt;::descend (4 samples, 1.04%)</title><rect x="35.5844%" y="197" width="1.0390%" height="15" fill="rgb(230,116,27)" fg:x="137" fg:w="4"/><text x="35.8344%" y="207.50"></text></g><g><title>core::mem::maybe_uninit::MaybeUninit&lt;T&gt;::assume_init_read (4 samples, 1.04%)</title><rect x="35.5844%" y="181" width="1.0390%" height="15" fill="rgb(228,99,48)" fg:x="137" fg:w="4"/><text x="35.8344%" y="191.50"></text></g><g><title>core::ptr::const_ptr::&lt;impl *const T&gt;::read (4 samples, 1.04%)</title><rect x="35.5844%" y="165" width="1.0390%" height="15" fill="rgb(253,11,6)" fg:x="137" fg:w="4"/><text x="35.8344%" y="175.50"></text></g><g><title>core::ptr::read (2 samples, 0.52%)</title><rect x="36.1039%" y="149" width="0.5195%" height="15" fill="rgb(247,143,39)" fg:x="139" fg:w="2"/><text x="36.3539%" y="159.50"></text></g><g><title>alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;,Type&gt;::force (5 samples, 1.30%)</title><rect x="36.6234%" y="197" width="1.2987%" height="15" fill="rgb(236,97,10)" fg:x="141" fg:w="5"/><text x="36.8734%" y="207.50"></text></g><g><title>bachelorarbeit::calc::delta_with_lut (5 samples, 1.30%)</title><rect x="36.6234%" y="181" width="1.2987%" height="15" fill="rgb(233,208,19)" fg:x="141" fg:w="5"/><text x="36.8734%" y="191.50"></text></g><g><title>&lt;core::iter::adapters::enumerate::Enumerate&lt;I&gt; as core::iter::traits::iterator::Iterator&gt;::next (9 samples, 2.34%)</title><rect x="41.0390%" y="165" width="2.3377%" height="15" fill="rgb(216,164,2)" fg:x="158" fg:w="9"/><text x="41.2890%" y="175.50">&lt;..</text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (9 samples, 2.34%)</title><rect x="41.0390%" y="149" width="2.3377%" height="15" fill="rgb(220,129,5)" fg:x="158" fg:w="9"/><text x="41.2890%" y="159.50">&lt;..</text></g><g><title>&lt;core::ptr::non_null::NonNull&lt;T&gt; as core::cmp::PartialEq&gt;::eq (8 samples, 2.08%)</title><rect x="41.2987%" y="133" width="2.0779%" height="15" fill="rgb(242,17,10)" fg:x="159" fg:w="8"/><text x="41.5487%" y="143.50">&lt;..</text></g><g><title>alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Immut,K,V,Type&gt;::keys (1 samples, 0.26%)</title><rect x="43.3766%" y="165" width="0.2597%" height="15" fill="rgb(242,107,0)" fg:x="167" fg:w="1"/><text x="43.6266%" y="175.50"></text></g><g><title>alloc::collections::btree::map::BTreeMap&lt;K,V,A&gt;::get (58 samples, 15.06%)</title><rect x="35.5844%" y="229" width="15.0649%" height="15" fill="rgb(251,28,31)" fg:x="137" fg:w="58"/><text x="35.8344%" y="239.50">alloc::collections::btr..</text></g><g><title>alloc::collections::btree::search::&lt;impl alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;&gt;::search_tree (58 samples, 15.06%)</title><rect x="35.5844%" y="213" width="15.0649%" height="15" fill="rgb(233,223,10)" fg:x="137" fg:w="58"/><text x="35.8344%" y="223.50">alloc::collections::btr..</text></g><g><title>alloc::collections::btree::search::&lt;impl alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,Type&gt;&gt;::search_node (49 samples, 12.73%)</title><rect x="37.9221%" y="197" width="12.7273%" height="15" fill="rgb(215,21,27)" fg:x="146" fg:w="49"/><text x="38.1721%" y="207.50">alloc::collections:..</text></g><g><title>alloc::collections::btree::search::&lt;impl alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,Type&gt;&gt;::find_key_index (49 samples, 12.73%)</title><rect x="37.9221%" y="181" width="12.7273%" height="15" fill="rgb(232,23,21)" fg:x="146" fg:w="49"/><text x="38.1721%" y="191.50">alloc::collections:..</text></g><g><title>core::cmp::impls::&lt;impl core::cmp::Ord for u64&gt;::cmp (27 samples, 7.01%)</title><rect x="43.6364%" y="165" width="7.0130%" height="15" fill="rgb(244,5,23)" fg:x="168" fg:w="27"/><text x="43.8864%" y="175.50">core::cmp..</text></g><g><title>bachelorarbeit::calc::delta_with_lut (61 samples, 15.84%)</title><rect x="35.0649%" y="245" width="15.8442%" height="15" fill="rgb(226,81,46)" fg:x="135" fg:w="61"/><text x="35.3149%" y="255.50">bachelorarbeit::calc::de..</text></g><g><title>core::f64::&lt;impl f64&gt;::to_bits (1 samples, 0.26%)</title><rect x="50.6494%" y="229" width="0.2597%" height="15" fill="rgb(247,70,30)" fg:x="195" fg:w="1"/><text x="50.8994%" y="239.50"></text></g><g><title>core::f64::&lt;impl f64&gt;::to_bits::rt_f64_to_u64 (1 samples, 0.26%)</title><rect x="50.6494%" y="213" width="0.2597%" height="15" fill="rgb(212,68,19)" fg:x="195" fg:w="1"/><text x="50.8994%" y="223.50"></text></g><g><title>num_complex::&lt;impl core::ops::arith::Add&lt;num_complex::Complex&lt;f64&gt;&gt; for f64&gt;::add (1 samples, 0.26%)</title><rect x="50.9091%" y="245" width="0.2597%" height="15" fill="rgb(240,187,13)" fg:x="196" fg:w="1"/><text x="51.1591%" y="255.50"></text></g><g><title>num_complex::&lt;impl core::ops::arith::Div&lt;num_complex::Complex&lt;f64&gt;&gt; for f64&gt;::div (7 samples, 1.82%)</title><rect x="51.1688%" y="245" width="1.8182%" height="15" fill="rgb(223,113,26)" fg:x="197" fg:w="7"/><text x="51.4188%" y="255.50">n..</text></g><g><title>num_complex::Complex&lt;T&gt;::norm_sqr (1 samples, 0.26%)</title><rect x="52.7273%" y="229" width="0.2597%" height="15" fill="rgb(206,192,2)" fg:x="203" fg:w="1"/><text x="52.9773%" y="239.50"></text></g><g><title>&lt;f64 as core::ops::arith::Add&gt;::add (1 samples, 0.26%)</title><rect x="52.7273%" y="213" width="0.2597%" height="15" fill="rgb(241,108,4)" fg:x="203" fg:w="1"/><text x="52.9773%" y="223.50"></text></g><g><title>do_cos (4 samples, 1.04%)</title><rect x="53.5065%" y="213" width="1.0390%" height="15" fill="rgb(247,173,49)" fg:x="206" fg:w="4"/><text x="53.7565%" y="223.50"></text></g><g><title>do_sin (5 samples, 1.30%)</title><rect x="54.5455%" y="213" width="1.2987%" height="15" fill="rgb(224,114,35)" fg:x="210" fg:w="5"/><text x="54.7955%" y="223.50"></text></g><g><title>std::f64::&lt;impl f64&gt;::cos (13 samples, 3.38%)</title><rect x="52.9870%" y="245" width="3.3766%" height="15" fill="rgb(245,159,27)" fg:x="204" fg:w="13"/><text x="53.2370%" y="255.50">std..</text></g><g><title>__cos_fma (13 samples, 3.38%)</title><rect x="52.9870%" y="229" width="3.3766%" height="15" fill="rgb(245,172,44)" fg:x="204" fg:w="13"/><text x="53.2370%" y="239.50">__c..</text></g><g><title>libc_feholdsetround_sse_ctx (2 samples, 0.52%)</title><rect x="55.8442%" y="213" width="0.5195%" height="15" fill="rgb(236,23,11)" fg:x="215" fg:w="2"/><text x="56.0942%" y="223.50"></text></g><g><title>std::f64::&lt;impl f64&gt;::powi (1 samples, 0.26%)</title><rect x="56.3636%" y="245" width="0.2597%" height="15" fill="rgb(205,117,38)" fg:x="217" fg:w="1"/><text x="56.6136%" y="255.50"></text></g><g><title>bachelorarbeit::calc::omnes::_{{closure}} (102 samples, 26.49%)</title><rect x="33.7662%" y="277" width="26.4935%" height="15" fill="rgb(237,72,25)" fg:x="130" fg:w="102"/><text x="34.0162%" y="287.50">bachelorarbeit::calc::omnes::_{{closure}}</text></g><g><title>bachelorarbeit::calc::omnes_integrand (102 samples, 26.49%)</title><rect x="33.7662%" y="261" width="26.4935%" height="15" fill="rgb(244,70,9)" fg:x="130" fg:w="102"/><text x="34.0162%" y="271.50">bachelorarbeit::calc::omnes_integrand</text></g><g><title>std::f64::&lt;impl f64&gt;::tan (14 samples, 3.64%)</title><rect x="56.6234%" y="245" width="3.6364%" height="15" fill="rgb(217,125,39)" fg:x="218" fg:w="14"/><text x="56.8734%" y="255.50">std:..</text></g><g><title>__tan_fma (14 samples, 3.64%)</title><rect x="56.6234%" y="229" width="3.6364%" height="15" fill="rgb(235,36,10)" fg:x="218" fg:w="14"/><text x="56.8734%" y="239.50">__ta..</text></g><g><title>num_complex::&lt;impl core::ops::arith::Mul&lt;num_complex::Complex&lt;f64&gt;&gt; for f64&gt;::mul (1 samples, 0.26%)</title><rect x="60.2597%" y="277" width="0.2597%" height="15" fill="rgb(251,123,47)" fg:x="232" fg:w="1"/><text x="60.5097%" y="287.50"></text></g><g><title>bachelorarbeit::calc::integrate_complex (106 samples, 27.53%)</title><rect x="33.2468%" y="293" width="27.5325%" height="15" fill="rgb(221,13,13)" fg:x="128" fg:w="106"/><text x="33.4968%" y="303.50">bachelorarbeit::calc::integrate_complex</text></g><g><title>num_complex::opassign::&lt;impl core::ops::arith::AddAssign for num_complex::Complex&lt;T&gt;&gt;::add_assign (1 samples, 0.26%)</title><rect x="60.5195%" y="277" width="0.2597%" height="15" fill="rgb(238,131,9)" fg:x="233" fg:w="1"/><text x="60.7695%" y="287.50"></text></g><g><title>&lt;f64 as core::ops::arith::AddAssign&gt;::add_assign (1 samples, 0.26%)</title><rect x="60.5195%" y="261" width="0.2597%" height="15" fill="rgb(211,50,8)" fg:x="233" fg:w="1"/><text x="60.7695%" y="271.50"></text></g><g><title>bachelorarbeit::calc::omnes (170 samples, 44.16%)</title><rect x="17.1429%" y="309" width="44.1558%" height="15" fill="rgb(245,182,24)" fg:x="66" fg:w="170"/><text x="17.3929%" y="319.50">bachelorarbeit::calc::omnes</text></g><g><title>bachelorarbeit::calc::omnes (2 samples, 0.52%)</title><rect x="60.7792%" y="293" width="0.5195%" height="15" fill="rgb(242,14,37)" fg:x="234" fg:w="2"/><text x="61.0292%" y="303.50"></text></g><g><title>do_cos (1 samples, 0.26%)</title><rect x="62.3377%" y="277" width="0.2597%" height="15" fill="rgb(246,228,12)" fg:x="240" fg:w="1"/><text x="62.5877%" y="287.50"></text></g><g><title>do_sin (2 samples, 0.52%)</title><rect x="62.5974%" y="277" width="0.5195%" height="15" fill="rgb(213,55,15)" fg:x="241" fg:w="2"/><text x="62.8474%" y="287.50"></text></g><g><title>std::f64::&lt;impl f64&gt;::cos (8 samples, 2.08%)</title><rect x="61.2987%" y="309" width="2.0779%" height="15" fill="rgb(209,9,3)" fg:x="236" fg:w="8"/><text x="61.5487%" y="319.50">s..</text></g><g><title>__cos_fma (8 samples, 2.08%)</title><rect x="61.2987%" y="293" width="2.0779%" height="15" fill="rgb(230,59,30)" fg:x="236" fg:w="8"/><text x="61.5487%" y="303.50">_..</text></g><g><title>libc_feresetround_sse_ctx (1 samples, 0.26%)</title><rect x="63.1169%" y="277" width="0.2597%" height="15" fill="rgb(209,121,21)" fg:x="243" fg:w="1"/><text x="63.3669%" y="287.50"></text></g><g><title>__ieee754_log_fma (20 samples, 5.19%)</title><rect x="63.3766%" y="261" width="5.1948%" height="15" fill="rgb(220,109,13)" fg:x="244" fg:w="20"/><text x="63.6266%" y="271.50">__ieee..</text></g><g><title>[unknown] (6 samples, 1.56%)</title><rect x="67.0130%" y="245" width="1.5584%" height="15" fill="rgb(232,18,1)" fg:x="258" fg:w="6"/><text x="67.2630%" y="255.50"></text></g><g><title>[unknown] (6 samples, 1.56%)</title><rect x="67.0130%" y="229" width="1.5584%" height="15" fill="rgb(215,41,42)" fg:x="258" fg:w="6"/><text x="67.2630%" y="239.50"></text></g><g><title>[unknown] (6 samples, 1.56%)</title><rect x="67.0130%" y="213" width="1.5584%" height="15" fill="rgb(224,123,36)" fg:x="258" fg:w="6"/><text x="67.2630%" y="223.50"></text></g><g><title>[unknown] (6 samples, 1.56%)</title><rect x="67.0130%" y="197" width="1.5584%" height="15" fill="rgb(240,125,3)" fg:x="258" fg:w="6"/><text x="67.2630%" y="207.50"></text></g><g><title>[unknown] (6 samples, 1.56%)</title><rect x="67.0130%" y="181" width="1.5584%" height="15" fill="rgb(205,98,50)" fg:x="258" fg:w="6"/><text x="67.2630%" y="191.50"></text></g><g><title>[unknown] (6 samples, 1.56%)</title><rect x="67.0130%" y="165" width="1.5584%" height="15" fill="rgb(205,185,37)" fg:x="258" fg:w="6"/><text x="67.2630%" y="175.50"></text></g><g><title>[unknown] (6 samples, 1.56%)</title><rect x="67.0130%" y="149" width="1.5584%" height="15" fill="rgb(238,207,15)" fg:x="258" fg:w="6"/><text x="67.2630%" y="159.50"></text></g><g><title>[unknown] (6 samples, 1.56%)</title><rect x="67.0130%" y="133" width="1.5584%" height="15" fill="rgb(213,199,42)" fg:x="258" fg:w="6"/><text x="67.2630%" y="143.50"></text></g><g><title>[unknown] (6 samples, 1.56%)</title><rect x="67.0130%" y="117" width="1.5584%" height="15" fill="rgb(235,201,11)" fg:x="258" fg:w="6"/><text x="67.2630%" y="127.50"></text></g><g><title>[unknown] (6 samples, 1.56%)</title><rect x="67.0130%" y="101" width="1.5584%" height="15" fill="rgb(207,46,11)" fg:x="258" fg:w="6"/><text x="67.2630%" y="111.50"></text></g><g><title>[unknown] (6 samples, 1.56%)</title><rect x="67.0130%" y="85" width="1.5584%" height="15" fill="rgb(241,35,35)" fg:x="258" fg:w="6"/><text x="67.2630%" y="95.50"></text></g><g><title>[unknown] (6 samples, 1.56%)</title><rect x="67.0130%" y="69" width="1.5584%" height="15" fill="rgb(243,32,47)" fg:x="258" fg:w="6"/><text x="67.2630%" y="79.50"></text></g><g><title>[unknown] (6 samples, 1.56%)</title><rect x="67.0130%" y="53" width="1.5584%" height="15" fill="rgb(247,202,23)" fg:x="258" fg:w="6"/><text x="67.2630%" y="63.50"></text></g><g><title>[unknown] (6 samples, 1.56%)</title><rect x="67.0130%" y="37" width="1.5584%" height="15" fill="rgb(219,102,11)" fg:x="258" fg:w="6"/><text x="67.2630%" y="47.50"></text></g><g><title>__log (2 samples, 0.52%)</title><rect x="68.5714%" y="261" width="0.5195%" height="15" fill="rgb(243,110,44)" fg:x="264" fg:w="2"/><text x="68.8214%" y="271.50"></text></g><g><title>std::f64::&lt;impl f64&gt;::ln (23 samples, 5.97%)</title><rect x="63.3766%" y="309" width="5.9740%" height="15" fill="rgb(222,74,54)" fg:x="244" fg:w="23"/><text x="63.6266%" y="319.50">std::f64..</text></g><g><title>std::sys::log_wrapper (23 samples, 5.97%)</title><rect x="63.3766%" y="293" width="5.9740%" height="15" fill="rgb(216,99,12)" fg:x="244" fg:w="23"/><text x="63.6266%" y="303.50">std::sys..</text></g><g><title>std::f64::_&lt;impl f64&gt;::ln::_{{closure}} (23 samples, 5.97%)</title><rect x="63.3766%" y="277" width="5.9740%" height="15" fill="rgb(226,22,26)" fg:x="244" fg:w="23"/><text x="63.6266%" y="287.50">std::f64..</text></g><g><title>__log_finite@GLIBC_2.15@plt (1 samples, 0.26%)</title><rect x="69.0909%" y="261" width="0.2597%" height="15" fill="rgb(217,163,10)" fg:x="266" fg:w="1"/><text x="69.3409%" y="271.50"></text></g><g><title>std::f64::&lt;impl f64&gt;::powi (1 samples, 0.26%)</title><rect x="69.3506%" y="309" width="0.2597%" height="15" fill="rgb(213,25,53)" fg:x="267" fg:w="1"/><text x="69.6006%" y="319.50"></text></g><g><title>bachelorarbeit::calc::integrate (259 samples, 67.27%)</title><rect x="4.9351%" y="357" width="67.2727%" height="15" fill="rgb(252,105,26)" fg:x="19" fg:w="259"/><text x="5.1851%" y="367.50">bachelorarbeit::calc::integrate</text></g><g><title>bachelorarbeit::calc::phi0::_{{closure}} (254 samples, 65.97%)</title><rect x="6.2338%" y="341" width="65.9740%" height="15" fill="rgb(220,39,43)" fg:x="24" fg:w="254"/><text x="6.4838%" y="351.50">bachelorarbeit::calc::phi0::_{{closure}}</text></g><g><title>bachelorarbeit::calc::phi0_integrand (253 samples, 65.71%)</title><rect x="6.4935%" y="325" width="65.7143%" height="15" fill="rgb(229,68,48)" fg:x="25" fg:w="253"/><text x="6.7435%" y="335.50">bachelorarbeit::calc::phi0_integrand</text></g><g><title>std::f64::&lt;impl f64&gt;::tan (10 samples, 2.60%)</title><rect x="69.6104%" y="309" width="2.5974%" height="15" fill="rgb(252,8,32)" fg:x="268" fg:w="10"/><text x="69.8604%" y="319.50">st..</text></g><g><title>__tan_fma (10 samples, 2.60%)</title><rect x="69.6104%" y="293" width="2.5974%" height="15" fill="rgb(223,20,43)" fg:x="268" fg:w="10"/><text x="69.8604%" y="303.50">__..</text></g><g><title>libc_feholdsetround_sse_ctx (1 samples, 0.26%)</title><rect x="71.9481%" y="277" width="0.2597%" height="15" fill="rgb(229,81,49)" fg:x="277" fg:w="1"/><text x="72.1981%" y="287.50"></text></g><g><title>&lt;num_complex::Complex&lt;T&gt; as core::ops::arith::Mul&lt;T&gt;&gt;::mul (1 samples, 0.26%)</title><rect x="72.9870%" y="293" width="0.2597%" height="15" fill="rgb(236,28,36)" fg:x="281" fg:w="1"/><text x="73.2370%" y="303.50"></text></g><g><title>&lt;f64 as core::ops::arith::Mul&gt;::mul (1 samples, 0.26%)</title><rect x="72.9870%" y="277" width="0.2597%" height="15" fill="rgb(249,185,26)" fg:x="281" fg:w="1"/><text x="73.2370%" y="287.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,Type&gt;::reborrow (1 samples, 0.26%)</title><rect x="73.5065%" y="261" width="0.2597%" height="15" fill="rgb(249,174,33)" fg:x="283" fg:w="1"/><text x="73.7565%" y="271.50"></text></g><g><title>alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::Internal&gt;,alloc::collections::btree::node::marker::Edge&gt;::descend (3 samples, 0.78%)</title><rect x="73.7662%" y="245" width="0.7792%" height="15" fill="rgb(233,201,37)" fg:x="284" fg:w="3"/><text x="74.0162%" y="255.50"></text></g><g><title>core::mem::maybe_uninit::MaybeUninit&lt;T&gt;::assume_init_read (3 samples, 0.78%)</title><rect x="73.7662%" y="229" width="0.7792%" height="15" fill="rgb(221,78,26)" fg:x="284" fg:w="3"/><text x="74.0162%" y="239.50"></text></g><g><title>core::ptr::const_ptr::&lt;impl *const T&gt;::read (3 samples, 0.78%)</title><rect x="73.7662%" y="213" width="0.7792%" height="15" fill="rgb(250,127,30)" fg:x="284" fg:w="3"/><text x="74.0162%" y="223.50"></text></g><g><title>core::ptr::read (3 samples, 0.78%)</title><rect x="73.7662%" y="197" width="0.7792%" height="15" fill="rgb(230,49,44)" fg:x="284" fg:w="3"/><text x="74.0162%" y="207.50"></text></g><g><title>alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;,Type&gt;::force (3 samples, 0.78%)</title><rect x="74.5455%" y="245" width="0.7792%" height="15" fill="rgb(229,67,23)" fg:x="287" fg:w="3"/><text x="74.7955%" y="255.50"></text></g><g><title>bachelorarbeit::calc::delta_with_lut (3 samples, 0.78%)</title><rect x="74.5455%" y="229" width="0.7792%" height="15" fill="rgb(249,83,47)" fg:x="287" fg:w="3"/><text x="74.7955%" y="239.50"></text></g><g><title>&lt;core::iter::adapters::enumerate::Enumerate&lt;I&gt; as core::iter::traits::iterator::Iterator&gt;::next (7 samples, 1.82%)</title><rect x="79.7403%" y="213" width="1.8182%" height="15" fill="rgb(215,43,3)" fg:x="307" fg:w="7"/><text x="79.9903%" y="223.50">&lt;..</text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (7 samples, 1.82%)</title><rect x="79.7403%" y="197" width="1.8182%" height="15" fill="rgb(238,154,13)" fg:x="307" fg:w="7"/><text x="79.9903%" y="207.50">&lt;..</text></g><g><title>&lt;core::ptr::non_null::NonNull&lt;T&gt; as core::cmp::PartialEq&gt;::eq (7 samples, 1.82%)</title><rect x="79.7403%" y="181" width="1.8182%" height="15" fill="rgb(219,56,2)" fg:x="307" fg:w="7"/><text x="79.9903%" y="191.50">&lt;..</text></g><g><title>[unknown] (1 samples, 0.26%)</title><rect x="81.5584%" y="213" width="0.2597%" height="15" fill="rgb(233,0,4)" fg:x="314" fg:w="1"/><text x="81.8084%" y="223.50"></text></g><g><title>[unknown] (1 samples, 0.26%)</title><rect x="81.5584%" y="197" width="0.2597%" height="15" fill="rgb(235,30,7)" fg:x="314" fg:w="1"/><text x="81.8084%" y="207.50"></text></g><g><title>[unknown] (1 samples, 0.26%)</title><rect x="81.5584%" y="181" width="0.2597%" height="15" fill="rgb(250,79,13)" fg:x="314" fg:w="1"/><text x="81.8084%" y="191.50"></text></g><g><title>[unknown] (1 samples, 0.26%)</title><rect x="81.5584%" y="165" width="0.2597%" height="15" fill="rgb(211,146,34)" fg:x="314" fg:w="1"/><text x="81.8084%" y="175.50"></text></g><g><title>[unknown] (1 samples, 0.26%)</title><rect x="81.5584%" y="149" width="0.2597%" height="15" fill="rgb(228,22,38)" fg:x="314" fg:w="1"/><text x="81.8084%" y="159.50"></text></g><g><title>[unknown] (1 samples, 0.26%)</title><rect x="81.5584%" y="133" width="0.2597%" height="15" fill="rgb(235,168,5)" fg:x="314" fg:w="1"/><text x="81.8084%" y="143.50"></text></g><g><title>[unknown] (1 samples, 0.26%)</title><rect x="81.5584%" y="117" width="0.2597%" height="15" fill="rgb(221,155,16)" fg:x="314" fg:w="1"/><text x="81.8084%" y="127.50"></text></g><g><title>[unknown] (1 samples, 0.26%)</title><rect x="81.5584%" y="101" width="0.2597%" height="15" fill="rgb(215,215,53)" fg:x="314" fg:w="1"/><text x="81.8084%" y="111.50"></text></g><g><title>[unknown] (1 samples, 0.26%)</title><rect x="81.5584%" y="85" width="0.2597%" height="15" fill="rgb(223,4,10)" fg:x="314" fg:w="1"/><text x="81.8084%" y="95.50"></text></g><g><title>[unknown] (1 samples, 0.26%)</title><rect x="81.5584%" y="69" width="0.2597%" height="15" fill="rgb(234,103,6)" fg:x="314" fg:w="1"/><text x="81.8084%" y="79.50"></text></g><g><title>[unknown] (1 samples, 0.26%)</title><rect x="81.5584%" y="53" width="0.2597%" height="15" fill="rgb(227,97,0)" fg:x="314" fg:w="1"/><text x="81.8084%" y="63.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Immut,K,V,Type&gt;::keys (1 samples, 0.26%)</title><rect x="81.8182%" y="213" width="0.2597%" height="15" fill="rgb(234,150,53)" fg:x="315" fg:w="1"/><text x="82.0682%" y="223.50"></text></g><g><title>bachelorarbeit::calc::delta_with_lut (54 samples, 14.03%)</title><rect x="73.2468%" y="293" width="14.0260%" height="15" fill="rgb(228,201,54)" fg:x="282" fg:w="54"/><text x="73.4968%" y="303.50">bachelorarbeit::calc:..</text></g><g><title>alloc::collections::btree::map::BTreeMap&lt;K,V,A&gt;::get (53 samples, 13.77%)</title><rect x="73.5065%" y="277" width="13.7662%" height="15" fill="rgb(222,22,37)" fg:x="283" fg:w="53"/><text x="73.7565%" y="287.50">alloc::collections::b..</text></g><g><title>alloc::collections::btree::search::&lt;impl alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;&gt;::search_tree (52 samples, 13.51%)</title><rect x="73.7662%" y="261" width="13.5065%" height="15" fill="rgb(237,53,32)" fg:x="284" fg:w="52"/><text x="74.0162%" y="271.50">alloc::collections::..</text></g><g><title>alloc::collections::btree::search::&lt;impl alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,Type&gt;&gt;::search_node (46 samples, 11.95%)</title><rect x="75.3247%" y="245" width="11.9481%" height="15" fill="rgb(233,25,53)" fg:x="290" fg:w="46"/><text x="75.5747%" y="255.50">alloc::collections..</text></g><g><title>alloc::collections::btree::search::&lt;impl alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,Type&gt;&gt;::find_key_index (46 samples, 11.95%)</title><rect x="75.3247%" y="229" width="11.9481%" height="15" fill="rgb(210,40,34)" fg:x="290" fg:w="46"/><text x="75.5747%" y="239.50">alloc::collections..</text></g><g><title>core::cmp::impls::&lt;impl core::cmp::Ord for u64&gt;::cmp (20 samples, 5.19%)</title><rect x="82.0779%" y="213" width="5.1948%" height="15" fill="rgb(241,220,44)" fg:x="316" fg:w="20"/><text x="82.3279%" y="223.50">core::..</text></g><g><title>num_complex::&lt;impl core::ops::arith::Add&lt;num_complex::Complex&lt;f64&gt;&gt; for f64&gt;::add (3 samples, 0.78%)</title><rect x="87.2727%" y="293" width="0.7792%" height="15" fill="rgb(235,28,35)" fg:x="336" fg:w="3"/><text x="87.5227%" y="303.50"></text></g><g><title>num_complex::&lt;impl core::ops::arith::Div&lt;num_complex::Complex&lt;f64&gt;&gt; for f64&gt;::div (11 samples, 2.86%)</title><rect x="88.0519%" y="293" width="2.8571%" height="15" fill="rgb(210,56,17)" fg:x="339" fg:w="11"/><text x="88.3019%" y="303.50">nu..</text></g><g><title>num_complex::Complex&lt;T&gt;::norm_sqr (2 samples, 0.52%)</title><rect x="90.3896%" y="277" width="0.5195%" height="15" fill="rgb(224,130,29)" fg:x="348" fg:w="2"/><text x="90.6396%" y="287.50"></text></g><g><title>&lt;f64 as core::ops::arith::Mul&gt;::mul (2 samples, 0.52%)</title><rect x="90.3896%" y="261" width="0.5195%" height="15" fill="rgb(235,212,8)" fg:x="348" fg:w="2"/><text x="90.6396%" y="271.50"></text></g><g><title>do_cos (4 samples, 1.04%)</title><rect x="92.2078%" y="261" width="1.0390%" height="15" fill="rgb(223,33,50)" fg:x="355" fg:w="4"/><text x="92.4578%" y="271.50"></text></g><g><title>do_sin (6 samples, 1.56%)</title><rect x="93.2468%" y="261" width="1.5584%" height="15" fill="rgb(219,149,13)" fg:x="359" fg:w="6"/><text x="93.4968%" y="271.50"></text></g><g><title>std::f64::&lt;impl f64&gt;::cos (16 samples, 4.16%)</title><rect x="90.9091%" y="293" width="4.1558%" height="15" fill="rgb(250,156,29)" fg:x="350" fg:w="16"/><text x="91.1591%" y="303.50">std::..</text></g><g><title>__cos_fma (16 samples, 4.16%)</title><rect x="90.9091%" y="277" width="4.1558%" height="15" fill="rgb(216,193,19)" fg:x="350" fg:w="16"/><text x="91.1591%" y="287.50">__cos..</text></g><g><title>libc_feholdsetround_sse_ctx (1 samples, 0.26%)</title><rect x="94.8052%" y="261" width="0.2597%" height="15" fill="rgb(216,135,14)" fg:x="365" fg:w="1"/><text x="95.0552%" y="271.50"></text></g><g><title>std::f64::&lt;impl f64&gt;::powi (2 samples, 0.52%)</title><rect x="95.0649%" y="293" width="0.5195%" height="15" fill="rgb(241,47,5)" fg:x="366" fg:w="2"/><text x="95.3149%" y="303.50"></text></g><g><title>bachelorarbeit::calc::omnes::_{{closure}} (96 samples, 24.94%)</title><rect x="72.2078%" y="325" width="24.9351%" height="15" fill="rgb(233,42,35)" fg:x="278" fg:w="96"/><text x="72.4578%" y="335.50">bachelorarbeit::calc::omnes::_{{closure}}</text></g><g><title>bachelorarbeit::calc::omnes_integrand (96 samples, 24.94%)</title><rect x="72.2078%" y="309" width="24.9351%" height="15" fill="rgb(231,13,6)" fg:x="278" fg:w="96"/><text x="72.4578%" y="319.50">bachelorarbeit::calc::omnes_integrand</text></g><g><title>std::f64::&lt;impl f64&gt;::tan (6 samples, 1.56%)</title><rect x="95.5844%" y="293" width="1.5584%" height="15" fill="rgb(207,181,40)" fg:x="368" fg:w="6"/><text x="95.8344%" y="303.50"></text></g><g><title>__tan_fma (6 samples, 1.56%)</title><rect x="95.5844%" y="277" width="1.5584%" height="15" fill="rgb(254,173,49)" fg:x="368" fg:w="6"/><text x="95.8344%" y="287.50"></text></g><g><title>num_complex::&lt;impl core::ops::arith::Mul&lt;num_complex::Complex&lt;f64&gt;&gt; for f64&gt;::mul (1 samples, 0.26%)</title><rect x="97.1429%" y="325" width="0.2597%" height="15" fill="rgb(221,1,38)" fg:x="374" fg:w="1"/><text x="97.3929%" y="335.50"></text></g><g><title>bachelorarbeit::calc::integrate_complex (99 samples, 25.71%)</title><rect x="72.2078%" y="341" width="25.7143%" height="15" fill="rgb(206,124,46)" fg:x="278" fg:w="99"/><text x="72.4578%" y="351.50">bachelorarbeit::calc::integrate_complex</text></g><g><title>num_complex::opassign::&lt;impl core::ops::arith::AddAssign for num_complex::Complex&lt;T&gt;&gt;::add_assign (2 samples, 0.52%)</title><rect x="97.4026%" y="325" width="0.5195%" height="15" fill="rgb(249,21,11)" fg:x="375" fg:w="2"/><text x="97.6526%" y="335.50"></text></g><g><title>&lt;f64 as core::ops::arith::AddAssign&gt;::add_assign (2 samples, 0.52%)</title><rect x="97.4026%" y="309" width="0.5195%" height="15" fill="rgb(222,201,40)" fg:x="375" fg:w="2"/><text x="97.6526%" y="319.50"></text></g><g><title>bachelorarbeit::calc::omnes (1 samples, 0.26%)</title><rect x="97.9221%" y="341" width="0.2597%" height="15" fill="rgb(235,61,29)" fg:x="377" fg:w="1"/><text x="98.1721%" y="351.50"></text></g><g><title>__libc_start_main_impl (362 samples, 94.03%)</title><rect x="4.4156%" y="677" width="94.0260%" height="15" fill="rgb(219,207,3)" fg:x="17" fg:w="362"/><text x="4.6656%" y="687.50">__libc_start_main_impl</text></g><g><title>__libc_start_call_main (362 samples, 94.03%)</title><rect x="4.4156%" y="661" width="94.0260%" height="15" fill="rgb(222,56,46)" fg:x="17" fg:w="362"/><text x="4.6656%" y="671.50">__libc_start_call_main</text></g><g><title>std::rt::lang_start (362 samples, 94.03%)</title><rect x="4.4156%" y="645" width="94.0260%" height="15" fill="rgb(239,76,54)" fg:x="17" fg:w="362"/><text x="4.6656%" y="655.50">std::rt::lang_start</text></g><g><title>std::rt::lang_start_internal (362 samples, 94.03%)</title><rect x="4.4156%" y="629" width="94.0260%" height="15" fill="rgb(231,124,27)" fg:x="17" fg:w="362"/><text x="4.6656%" y="639.50">std::rt::lang_start_internal</text></g><g><title>std::rt::lang_start::_{{closure}} (362 samples, 94.03%)</title><rect x="4.4156%" y="613" width="94.0260%" height="15" fill="rgb(249,195,6)" fg:x="17" fg:w="362"/><text x="4.6656%" y="623.50">std::rt::lang_start::_{{closure}}</text></g><g><title>std::sys_common::backtrace::__rust_begin_short_backtrace (362 samples, 94.03%)</title><rect x="4.4156%" y="597" width="94.0260%" height="15" fill="rgb(237,174,47)" fg:x="17" fg:w="362"/><text x="4.6656%" y="607.50">std::sys_common::backtrace::__rust_begin_short_backtrace</text></g><g><title>core::ops::function::FnOnce::call_once (362 samples, 94.03%)</title><rect x="4.4156%" y="581" width="94.0260%" height="15" fill="rgb(206,201,31)" fg:x="17" fg:w="362"/><text x="4.6656%" y="591.50">core::ops::function::FnOnce::call_once</text></g><g><title>bachelorarbeit::main (362 samples, 94.03%)</title><rect x="4.4156%" y="565" width="94.0260%" height="15" fill="rgb(231,57,52)" fg:x="17" fg:w="362"/><text x="4.6656%" y="575.50">bachelorarbeit::main</text></g><g><title>core::iter::traits::iterator::Iterator::collect (360 samples, 93.51%)</title><rect x="4.9351%" y="549" width="93.5065%" height="15" fill="rgb(248,177,22)" fg:x="19" fg:w="360"/><text x="5.1851%" y="559.50">core::iter::traits::iterator::Iterator::collect</text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (360 samples, 93.51%)</title><rect x="4.9351%" y="533" width="93.5065%" height="15" fill="rgb(215,211,37)" fg:x="19" fg:w="360"/><text x="5.1851%" y="543.50">&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter</text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt;&gt;::from_iter (360 samples, 93.51%)</title><rect x="4.9351%" y="517" width="93.5065%" height="15" fill="rgb(241,128,51)" fg:x="19" fg:w="360"/><text x="5.1851%" y="527.50">&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt;&gt;::from_iter</text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (360 samples, 93.51%)</title><rect x="4.9351%" y="501" width="93.5065%" height="15" fill="rgb(227,165,31)" fg:x="19" fg:w="360"/><text x="5.1851%" y="511.50">&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter</text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as alloc::vec::spec_extend::SpecExtend&lt;T,I&gt;&gt;::spec_extend (360 samples, 93.51%)</title><rect x="4.9351%" y="485" width="93.5065%" height="15" fill="rgb(228,167,24)" fg:x="19" fg:w="360"/><text x="5.1851%" y="495.50">&lt;alloc::vec::Vec&lt;T,A&gt; as alloc::vec::spec_extend::SpecExtend&lt;T,I&gt;&gt;::spec_extend</text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted (360 samples, 93.51%)</title><rect x="4.9351%" y="469" width="93.5065%" height="15" fill="rgb(228,143,12)" fg:x="19" fg:w="360"/><text x="5.1851%" y="479.50">alloc::vec::Vec&lt;T,A&gt;::extend_trusted</text></g><g><title>core::iter::traits::iterator::Iterator::for_each (360 samples, 93.51%)</title><rect x="4.9351%" y="453" width="93.5065%" height="15" fill="rgb(249,149,8)" fg:x="19" fg:w="360"/><text x="5.1851%" y="463.50">core::iter::traits::iterator::Iterator::for_each</text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (360 samples, 93.51%)</title><rect x="4.9351%" y="437" width="93.5065%" height="15" fill="rgb(243,35,44)" fg:x="19" fg:w="360"/><text x="5.1851%" y="447.50">&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold</text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::fold (360 samples, 93.51%)</title><rect x="4.9351%" y="421" width="93.5065%" height="15" fill="rgb(246,89,9)" fg:x="19" fg:w="360"/><text x="5.1851%" y="431.50">&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::fold</text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (360 samples, 93.51%)</title><rect x="4.9351%" y="405" width="93.5065%" height="15" fill="rgb(233,213,13)" fg:x="19" fg:w="360"/><text x="5.1851%" y="415.50">core::iter::adapters::map::map_fold::_{{closure}}</text></g><g><title>bachelorarbeit::main::_{{closure}} (360 samples, 93.51%)</title><rect x="4.9351%" y="389" width="93.5065%" height="15" fill="rgb(233,141,41)" fg:x="19" fg:w="360"/><text x="5.1851%" y="399.50">bachelorarbeit::main::_{{closure}}</text></g><g><title>bachelorarbeit::calc::phi0 (360 samples, 93.51%)</title><rect x="4.9351%" y="373" width="93.5065%" height="15" fill="rgb(239,167,4)" fg:x="19" fg:w="360"/><text x="5.1851%" y="383.50">bachelorarbeit::calc::phi0</text></g><g><title>bachelorarbeit::calc::omnes (101 samples, 26.23%)</title><rect x="72.2078%" y="357" width="26.2338%" height="15" fill="rgb(209,217,16)" fg:x="278" fg:w="101"/><text x="72.4578%" y="367.50">bachelorarbeit::calc::omnes</text></g><g><title>num_complex::Complex&lt;T&gt;::exp (1 samples, 0.26%)</title><rect x="98.1818%" y="341" width="0.2597%" height="15" fill="rgb(219,88,35)" fg:x="378" fg:w="1"/><text x="98.4318%" y="351.50"></text></g><g><title>&lt;f64 as num_traits::float::Float&gt;::exp (1 samples, 0.26%)</title><rect x="98.1818%" y="325" width="0.2597%" height="15" fill="rgb(220,193,23)" fg:x="378" fg:w="1"/><text x="98.4318%" y="335.50"></text></g><g><title>std::f64::&lt;impl f64&gt;::exp (1 samples, 0.26%)</title><rect x="98.1818%" y="309" width="0.2597%" height="15" fill="rgb(230,90,52)" fg:x="378" fg:w="1"/><text x="98.4318%" y="319.50"></text></g><g><title>__GI___exp (1 samples, 0.26%)</title><rect x="98.1818%" y="293" width="0.2597%" height="15" fill="rgb(252,106,19)" fg:x="378" fg:w="1"/><text x="98.4318%" y="303.50"></text></g><g><title>__ieee754_exp_fma (1 samples, 0.26%)</title><rect x="98.1818%" y="277" width="0.2597%" height="15" fill="rgb(206,74,20)" fg:x="378" fg:w="1"/><text x="98.4318%" y="287.50"></text></g><g><title>bachelorarbeit (380 samples, 98.70%)</title><rect x="0.0000%" y="709" width="98.7013%" height="15" fill="rgb(230,138,44)" fg:x="0" fg:w="380"/><text x="0.2500%" y="719.50">bachelorarbeit</text></g><g><title>_start (363 samples, 94.29%)</title><rect x="4.4156%" y="693" width="94.2857%" height="15" fill="rgb(235,182,43)" fg:x="17" fg:w="363"/><text x="4.6656%" y="703.50">_start</text></g><g><title>_dl_start (1 samples, 0.26%)</title><rect x="98.4416%" y="677" width="0.2597%" height="15" fill="rgb(242,16,51)" fg:x="379" fg:w="1"/><text x="98.6916%" y="687.50"></text></g><g><title>_dl_start_final (1 samples, 0.26%)</title><rect x="98.4416%" y="661" width="0.2597%" height="15" fill="rgb(248,9,4)" fg:x="379" fg:w="1"/><text x="98.6916%" y="671.50"></text></g><g><title>_dl_sysdep_start (1 samples, 0.26%)</title><rect x="98.4416%" y="645" width="0.2597%" height="15" fill="rgb(210,31,22)" fg:x="379" fg:w="1"/><text x="98.6916%" y="655.50"></text></g><g><title>dl_main (1 samples, 0.26%)</title><rect x="98.4416%" y="629" width="0.2597%" height="15" fill="rgb(239,54,39)" fg:x="379" fg:w="1"/><text x="98.6916%" y="639.50"></text></g><g><title>_dl_map_object_deps (1 samples, 0.26%)</title><rect x="98.4416%" y="613" width="0.2597%" height="15" fill="rgb(230,99,41)" fg:x="379" fg:w="1"/><text x="98.6916%" y="623.50"></text></g><g><title>_dl_catch_exception (1 samples, 0.26%)</title><rect x="98.4416%" y="597" width="0.2597%" height="15" fill="rgb(253,106,12)" fg:x="379" fg:w="1"/><text x="98.6916%" y="607.50"></text></g><g><title>openaux (1 samples, 0.26%)</title><rect x="98.4416%" y="581" width="0.2597%" height="15" fill="rgb(213,46,41)" fg:x="379" fg:w="1"/><text x="98.6916%" y="591.50"></text></g><g><title>_dl_map_object (1 samples, 0.26%)</title><rect x="98.4416%" y="565" width="0.2597%" height="15" fill="rgb(215,133,35)" fg:x="379" fg:w="1"/><text x="98.6916%" y="575.50"></text></g><g><title>_dl_map_object_from_fd (1 samples, 0.26%)</title><rect x="98.4416%" y="549" width="0.2597%" height="15" fill="rgb(213,28,5)" fg:x="379" fg:w="1"/><text x="98.6916%" y="559.50"></text></g><g><title>_dl_map_segments (1 samples, 0.26%)</title><rect x="98.4416%" y="533" width="0.2597%" height="15" fill="rgb(215,77,49)" fg:x="379" fg:w="1"/><text x="98.6916%" y="543.50"></text></g><g><title>__mmap64 (1 samples, 0.26%)</title><rect x="98.4416%" y="517" width="0.2597%" height="15" fill="rgb(248,100,22)" fg:x="379" fg:w="1"/><text x="98.6916%" y="527.50"></text></g><g><title>__mmap64 (1 samples, 0.26%)</title><rect x="98.4416%" y="501" width="0.2597%" height="15" fill="rgb(208,67,9)" fg:x="379" fg:w="1"/><text x="98.6916%" y="511.50"></text></g><g><title>[unknown] (1 samples, 0.26%)</title><rect x="98.4416%" y="485" width="0.2597%" height="15" fill="rgb(219,133,21)" fg:x="379" fg:w="1"/><text x="98.6916%" y="495.50"></text></g><g><title>[unknown] (1 samples, 0.26%)</title><rect x="98.4416%" y="469" width="0.2597%" height="15" fill="rgb(246,46,29)" fg:x="379" fg:w="1"/><text x="98.6916%" y="479.50"></text></g><g><title>[unknown] (1 samples, 0.26%)</title><rect x="98.4416%" y="453" width="0.2597%" height="15" fill="rgb(246,185,52)" fg:x="379" fg:w="1"/><text x="98.6916%" y="463.50"></text></g><g><title>[unknown] (1 samples, 0.26%)</title><rect x="98.4416%" y="437" width="0.2597%" height="15" fill="rgb(252,136,11)" fg:x="379" fg:w="1"/><text x="98.6916%" y="447.50"></text></g><g><title>[unknown] (1 samples, 0.26%)</title><rect x="98.4416%" y="421" width="0.2597%" height="15" fill="rgb(219,138,53)" fg:x="379" fg:w="1"/><text x="98.6916%" y="431.50"></text></g><g><title>[unknown] (1 samples, 0.26%)</title><rect x="98.4416%" y="405" width="0.2597%" height="15" fill="rgb(211,51,23)" fg:x="379" fg:w="1"/><text x="98.6916%" y="415.50"></text></g><g><title>[unknown] (1 samples, 0.26%)</title><rect x="98.4416%" y="389" width="0.2597%" height="15" fill="rgb(247,221,28)" fg:x="379" fg:w="1"/><text x="98.6916%" y="399.50"></text></g><g><title>all (385 samples, 100%)</title><rect x="0.0000%" y="725" width="100.0000%" height="15" fill="rgb(251,222,45)" fg:x="0" fg:w="385"/><text x="0.2500%" y="735.50"></text></g><g><title>perf-exec (5 samples, 1.30%)</title><rect x="98.7013%" y="709" width="1.2987%" height="15" fill="rgb(217,162,53)" fg:x="380" fg:w="5"/><text x="98.9513%" y="719.50"></text></g><g><title>[unknown] (5 samples, 1.30%)</title><rect x="98.7013%" y="693" width="1.2987%" height="15" fill="rgb(229,93,14)" fg:x="380" fg:w="5"/><text x="98.9513%" y="703.50"></text></g><g><title>[unknown] (5 samples, 1.30%)</title><rect x="98.7013%" y="677" width="1.2987%" height="15" fill="rgb(209,67,49)" fg:x="380" fg:w="5"/><text x="98.9513%" y="687.50"></text></g><g><title>[unknown] (5 samples, 1.30%)</title><rect x="98.7013%" y="661" width="1.2987%" height="15" fill="rgb(213,87,29)" fg:x="380" fg:w="5"/><text x="98.9513%" y="671.50"></text></g><g><title>[unknown] (5 samples, 1.30%)</title><rect x="98.7013%" y="645" width="1.2987%" height="15" fill="rgb(205,151,52)" fg:x="380" fg:w="5"/><text x="98.9513%" y="655.50"></text></g><g><title>[unknown] (5 samples, 1.30%)</title><rect x="98.7013%" y="629" width="1.2987%" height="15" fill="rgb(253,215,39)" fg:x="380" fg:w="5"/><text x="98.9513%" y="639.50"></text></g><g><title>[unknown] (5 samples, 1.30%)</title><rect x="98.7013%" y="613" width="1.2987%" height="15" fill="rgb(221,220,41)" fg:x="380" fg:w="5"/><text x="98.9513%" y="623.50"></text></g><g><title>[unknown] (5 samples, 1.30%)</title><rect x="98.7013%" y="597" width="1.2987%" height="15" fill="rgb(218,133,21)" fg:x="380" fg:w="5"/><text x="98.9513%" y="607.50"></text></g><g><title>[unknown] (5 samples, 1.30%)</title><rect x="98.7013%" y="581" width="1.2987%" height="15" fill="rgb(221,193,43)" fg:x="380" fg:w="5"/><text x="98.9513%" y="591.50"></text></g><g><title>[unknown] (5 samples, 1.30%)</title><rect x="98.7013%" y="565" width="1.2987%" height="15" fill="rgb(240,128,52)" fg:x="380" fg:w="5"/><text x="98.9513%" y="575.50"></text></g><g><title>[unknown] (5 samples, 1.30%)</title><rect x="98.7013%" y="549" width="1.2987%" height="15" fill="rgb(253,114,12)" fg:x="380" fg:w="5"/><text x="98.9513%" y="559.50"></text></g><g><title>[unknown] (5 samples, 1.30%)</title><rect x="98.7013%" y="533" width="1.2987%" height="15" fill="rgb(215,223,47)" fg:x="380" fg:w="5"/><text x="98.9513%" y="543.50"></text></g><g><title>[unknown] (5 samples, 1.30%)</title><rect x="98.7013%" y="517" width="1.2987%" height="15" fill="rgb(248,225,23)" fg:x="380" fg:w="5"/><text x="98.9513%" y="527.50"></text></g><g><title>[unknown] (5 samples, 1.30%)</title><rect x="98.7013%" y="501" width="1.2987%" height="15" fill="rgb(250,108,0)" fg:x="380" fg:w="5"/><text x="98.9513%" y="511.50"></text></g><g><title>[unknown] (5 samples, 1.30%)</title><rect x="98.7013%" y="485" width="1.2987%" height="15" fill="rgb(228,208,7)" fg:x="380" fg:w="5"/><text x="98.9513%" y="495.50"></text></g><g><title>[unknown] (5 samples, 1.30%)</title><rect x="98.7013%" y="469" width="1.2987%" height="15" fill="rgb(244,45,10)" fg:x="380" fg:w="5"/><text x="98.9513%" y="479.50"></text></g><g><title>[unknown] (5 samples, 1.30%)</title><rect x="98.7013%" y="453" width="1.2987%" height="15" fill="rgb(207,125,25)" fg:x="380" fg:w="5"/><text x="98.9513%" y="463.50"></text></g><g><title>[unknown] (5 samples, 1.30%)</title><rect x="98.7013%" y="437" width="1.2987%" height="15" fill="rgb(210,195,18)" fg:x="380" fg:w="5"/><text x="98.9513%" y="447.50"></text></g></svg></svg>