From 60be1b417bf0d97ea4341151927e9edaf3203346 Mon Sep 17 00:00:00 2001 From: EshaanAgg <96648934+EshaanAgg@users.noreply.github.com> Date: Mon, 8 Jul 2024 16:05:41 +0530 Subject: [PATCH 01/15] start merging the tables --- .../react-table/scripts/start.js | 4 +- .../src/components/StatisticsTable.js | 149 +++++++++++----- .../react-table/src/components/Summary.js | 164 +++++++++++------- 3 files changed, 200 insertions(+), 117 deletions(-) diff --git a/benchexec/tablegenerator/react-table/scripts/start.js b/benchexec/tablegenerator/react-table/scripts/start.js index bb2f6f525..f9b28ab34 100644 --- a/benchexec/tablegenerator/react-table/scripts/start.js +++ b/benchexec/tablegenerator/react-table/scripts/start.js @@ -5,8 +5,6 @@ // // SPDX-License-Identifier: Apache-2.0 -"use strict"; - const fs = require("fs"); const path = require("path"); @@ -18,7 +16,7 @@ if (dataParam) { fs.copyFileSync( path.resolve(__dirname, "../", dataParam), - path.resolve(process.env.DATA) + path.resolve(process.env.DATA), ); } diff --git a/benchexec/tablegenerator/react-table/src/components/StatisticsTable.js b/benchexec/tablegenerator/react-table/src/components/StatisticsTable.js index 2e86c524a..67a481232 100644 --- a/benchexec/tablegenerator/react-table/src/components/StatisticsTable.js +++ b/benchexec/tablegenerator/react-table/src/components/StatisticsTable.js @@ -46,6 +46,7 @@ const StatisticsTable = ({ onStatsReady, stats: defaultStats, filtered = false, + benchmarkSetupData, }) => { // We want to skip stat calculation in a test environment if not // specifically wanted (signaled by a passed onStatsReady callback function) @@ -78,35 +79,46 @@ const StatisticsTable = ({ } }, [tools, tableData, onStatsReady, skipStats, defaultStats, filtered]); - const renderTableHeaders = (headerGroups) => ( + /** + * Render the table header. It can display two kinds of header groups: + * 1. Toolset Header Group: Contains the toolset names. It has the type "toolset". + * 2. Columns Header Group: Contains the column names. It has the type "columns". + * @param {*} headerGroup The header group to render + * @param {string} type The type of the header group. Can be "toolset" or "columns". + * @returns {JSX.Element} + */ + const renderTableHeader = (headerGroup, type) => (
- {headerGroups.map((headerGroup) => ( -
- {headerGroup.headers.map((header) => ( -
- {header.render("Header")} - - {(!header.className || - !header.className.includes("separator")) && ( -
- )} -
- ))} -
- ))} +
+ {headerGroup.headers.map((header) => ( +
+ {header.render("Header")} + {console.log(header)} + {(!header.className || !header.className.includes("separator")) && ( +
+ )} +
+ ))} +
); - const renderTableData = (rows) => ( + /** + * Render the table data rows. + * These rows contain the statistics data that is the bottom part of the table. + * @param {*} rows The rows to render + * @returns {JSX.Element} + */ + const renderTableDataRows = (rows) => (
{rows.map((row) => { prepareRow(row); @@ -127,6 +139,13 @@ const StatisticsTable = ({
); + /** + * Render the benchmark setup row. + * @param {*} row The row to render + * @returns {JSX.Element} + */ + const renderBenchmarkSetupRow = (row) => {}; + const renderTable = (headerGroups, rows) => { if (filtered && stats.length === 0) { return ( @@ -135,13 +154,27 @@ const StatisticsTable = ({

); } + + if (headerGroups.length !== 2) + throw new Error( + `Unexpected number of header groups. Expected 2 (1 for toolset, 1 for statistics columns). Got ${headerGroups.length}.`, + ); + + const [toolsetNameHeaderGroup, columnsHeaderGroup] = headerGroups; + const benchmarkSetupData = rows.filter( + (row) => row.original.type === "benchmark_setup", + ); + const statsData = rows.filter((row) => row.original.type === "statistics"); + return (
- {renderTableHeaders(headerGroups)} - {renderTableData(rows)} + {renderTableHeader(toolsetNameHeaderGroup, "toolset")} + {renderTableDataRows(benchmarkSetupData)} + {renderTableHeader(columnsHeaderGroup, "columns")} + {renderTableDataRows(statsData)}
@@ -159,7 +192,7 @@ const StatisticsTable = ({ column={column} className="header-data clickable" title="Show Quantile Plot of this column" - onClick={(e) => switchToQuantile(column)} + onClick={(_) => switchToQuantile(column)} /> ), hidden: @@ -171,7 +204,10 @@ const StatisticsTable = ({ column.type === "status" ? 6 : null, ), minWidth: 30, - accessor: (row) => row.content[runSetIdx][columnIdx], + accessor: (row) => + row.type === "statistics" + ? row.content[runSetIdx][columnIdx] + : row.content, Cell: (cell) => { let valueToRender = cell.value?.sum; // We handle status differently as the main aggregation (denoted "sum") @@ -235,23 +271,26 @@ const StatisticsTable = ({ width: titleColWidth, minWidth: 100, Header: , - Cell: (cell) => ( -
- ), + Cell: (cell) => + cell.row.original.type === "benchmark_setup" ? ( + <>{cell.row.original.name} + ) : ( +
+ ), }, ], }); @@ -276,7 +315,23 @@ const StatisticsTable = ({ tools, ]); - const data = useMemo(() => stats, [stats]); + /** The data for the table is a combination of the benchmark setup data and the statistics data + * Each row is tagged with a type to distinguish between the two. + * type: "benchmark_setup" | "statistics" + * The benchmark rows are displayed first followed by the statistics rows. + * */ + const data = useMemo(() => { + return [ + ...benchmarkSetupData.map((b) => ({ + type: "benchmark_setup", + ...b, + })), + ...stats.map((s) => ({ + type: "statistics", + ...s, + })), + ]; + }, [stats, benchmarkSetupData]); const { getTableProps, getTableBodyProps, headerGroups, rows, prepareRow } = useTable( diff --git a/benchexec/tablegenerator/react-table/src/components/Summary.js b/benchexec/tablegenerator/react-table/src/components/Summary.js index 72912445b..57ff85176 100644 --- a/benchexec/tablegenerator/react-table/src/components/Summary.js +++ b/benchexec/tablegenerator/react-table/src/components/Summary.js @@ -22,84 +22,114 @@ const infos = [ "property", ]; -const Summary = (props) => { - /* ++++++++++++++ Helper functions ++++++++++++++ */ - - const renderOptions = (text) => { - return text.split(/[\s]+-/).map((option, i) => ( -
  • - {i === 0 ? option : `-${option}`} -
  • - )); - }; - - const externalLink = (url, text) => { - if (url) { - return ( - - {text} - - ); - } else { - return text; - } - }; +/** + * JSX component for rendering the options of a tool. + * @prop {string} text - The string containing the options. + * @returns {JSX.Element} + */ +const ToolOptions = ({ text }) => { + return text.split(/[\s]+-/).map((option, i) => ( +
  • + {i === 0 ? option : `-${option}`} +
  • + )); +}; - const renderToolNameAndVersion = ({ - tool, - version, - project_url, - version_url, - }) => { +/** + * JSX component for rendering an external link. + * @prop {string} text - The string to display for the link. + * @prop {string} url - The URL to link to. + * @returns {JSX.Element} + */ +const ExternalLink = ({ url, text }) => { + if (url) { return ( - <> - {externalLink(project_url, tool)} {externalLink(version_url, version)} - + + {text} + ); - }; + } - /* ++++++++++++++ Table render functions ++++++++++++++ */ + return <>{text}; +}; - const renderRow = (row, text, colSpan, j) => { - const isOptionRow = row === "options"; - const isToolRow = row === "tool"; - return ( - - {isOptionRow ? ( -
      {renderOptions(text)}
    - ) : isToolRow ? ( - renderToolNameAndVersion(text) - ) : ( - text - )} - - ); - }; +/** + * JSX component for rendering the name and version of a tool. + * @prop {string} tool - The name of the tool. + * @prop {string} version - The version of the tool. + * @prop {string} project_url - The URL of the project. + * @prop {string} version_url - The URL of the version. + * @returns {JSX.Element} + */ +const ToolNameAndVersion = ({ tool, version, project_url, version_url }) => { + return ( + <> + {" "} + + + ); +}; + +/** + * JSX component for rendering the benchmark setup row. + * @prop {string} row - The row type. + * @prop {string|Array} data - The data to display. + * @prop {number} colSpan - The column span of the cell. + * @prop {number} index - The index of the cell. + * @returns {JSX.Element} + */ +export const BenchmarkSetupRow = ({ row, data, colSpan, index }) => { + const isOptionRow = row === "options"; + const isToolRow = row === "tool"; + + return ( + + {isOptionRow ? ( +
      + +
    + ) : isToolRow ? ( + + ) : ( + data + )} + + ); +}; + +const Summary = (props) => { + const benchmarkSetupData = infos + .map((row) => props.tableHeader[row]) + .filter((row) => row !== null); return (
    -
    + {/*

    Benchmark Setup

    - {infos - .map((row) => props.tableHeader[row]) - .filter((row) => row !== null) - .map((row) => ( - - - {row.content.map((tool, j) => - renderRow(row.id, tool[0], tool[1], j), - )} - - ))} + {benchmarkSetupData.map((row) => ( + + + {row.content.map((tool, j) => ( + + ))} + + ))}
    {row.name}
    {row.name}
    -
    +
    */} + { onStatsReady={props.onStatsReady} stats={props.stats} filtered={props.filtered} + benchmarkSetupData={benchmarkSetupData} />

    - Generated by{" "} + Generated by {""} - {" "} BenchExec {props.version}

    From 5ac36b2c9c2358a35219d9547e89bf24c38c691b Mon Sep 17 00:00:00 2001 From: EshaanAgg <96648934+EshaanAgg@users.noreply.github.com> Date: Fri, 19 Jul 2024 11:10:21 +0530 Subject: [PATCH 02/15] progress --- .../src/components/StatisticsTable.js | 61 +- .../react-table/src/components/Summary.js | 3 +- .../react-table/src/data/data.json | 1338 ++++++++++------- 3 files changed, 886 insertions(+), 516 deletions(-) diff --git a/benchexec/tablegenerator/react-table/src/components/StatisticsTable.js b/benchexec/tablegenerator/react-table/src/components/StatisticsTable.js index 67a481232..d9a36fb11 100644 --- a/benchexec/tablegenerator/react-table/src/components/StatisticsTable.js +++ b/benchexec/tablegenerator/react-table/src/components/StatisticsTable.js @@ -26,6 +26,7 @@ import { isNil, getHiddenColIds, } from "../utils/utils"; +import { BenchmarkSetupRow } from "./Summary.js"; const isTestEnv = process.env.NODE_ENV === "test"; @@ -81,8 +82,8 @@ const StatisticsTable = ({ /** * Render the table header. It can display two kinds of header groups: - * 1. Toolset Header Group: Contains the toolset names. It has the type "toolset". - * 2. Columns Header Group: Contains the column names. It has the type "columns". + * 1. Toolset Header Group: includes the toolset names. It has the type "toolset". + * 2. Columns Header Group: includes the column names. It has the type "columns". * @param {*} headerGroup The header group to render * @param {string} type The type of the header group. Can be "toolset" or "columns". * @returns {JSX.Element} @@ -99,7 +100,6 @@ const StatisticsTable = ({ })} > {header.render("Header")} - {console.log(header)} {(!header.className || !header.className.includes("separator")) && (
    {rows.map((row) => { prepareRow(row); + console.log("Row Values: ", row.values); return (
    {row.cells.map((cell) => ( @@ -144,7 +145,46 @@ const StatisticsTable = ({ * @param {*} row The row to render * @returns {JSX.Element} */ - const renderBenchmarkSetupRow = (row) => {}; + const renderBenchmarkSetupRows = (rows) => { + // return rows.map((row) => ( + //
    + // {row.name} + // {row.content.map((tool, j) => ( + // + // ))} + //
    + // )); + + return rows.map((row) => { + prepareRow(row); + console.log("Benchmark Setup Row : ", row); + console.log("Benchmark Setup Row Original: ", row.original.content); + return ( +
    + {row.cells.map((cell) => ( +
    + {cell.column.id.includes("summary") || + cell.column.id.includes("summary") ? ( + cell.render("Cell") + ) : ( +
    Testing
    + )} +
    + ))} +
    + ); + }); + }; const renderTable = (headerGroups, rows) => { if (filtered && stats.length === 0) { @@ -172,7 +212,7 @@ const StatisticsTable = ({
    {renderTableHeader(toolsetNameHeaderGroup, "toolset")} - {renderTableDataRows(benchmarkSetupData)} + {renderBenchmarkSetupRows(benchmarkSetupData)} {renderTableHeader(columnsHeaderGroup, "columns")} {renderTableDataRows(statsData)}
    @@ -210,17 +250,17 @@ const StatisticsTable = ({ : row.content, Cell: (cell) => { let valueToRender = cell.value?.sum; - // We handle status differently as the main aggregation (denoted "sum") - // is of type "count" for this column type. - // This means that the default value if no data is available is 0 if (column.type === "status") { + // We handle status differently as the main aggregation (denoted "sum") + // is of type "count" for this column type. + // This means that the default value if no data is available is 0 if (cell.value === undefined) { // No data is available, default to 0 valueToRender = 0; } else if (cell.value === null) { // We receive a null value directly from the stats object of the dataset. // Will be rendered as "-" - // This edge case only applies to the local summary as it contains static values + // This edge case only applies to the local summary as it includes static values // that we can not calculate and therefore directly take them from the stats object. valueToRender = null; @@ -271,6 +311,7 @@ const StatisticsTable = ({ width: titleColWidth, minWidth: 100, Header: , + enableColSpan: true, Cell: (cell) => cell.row.original.type === "benchmark_setup" ? ( <>{cell.row.original.name} @@ -333,6 +374,8 @@ const StatisticsTable = ({ ]; }, [stats, benchmarkSetupData]); + console.log("Data", data); + const { getTableProps, getTableBodyProps, headerGroups, rows, prepareRow } = useTable( { diff --git a/benchexec/tablegenerator/react-table/src/components/Summary.js b/benchexec/tablegenerator/react-table/src/components/Summary.js index 57ff85176..f398a9a51 100644 --- a/benchexec/tablegenerator/react-table/src/components/Summary.js +++ b/benchexec/tablegenerator/react-table/src/components/Summary.js @@ -78,14 +78,13 @@ const ToolNameAndVersion = ({ tool, version, project_url, version_url }) => { * @prop {number} index - The index of the cell. * @returns {JSX.Element} */ -export const BenchmarkSetupRow = ({ row, data, colSpan, index }) => { +export const BenchmarkSetupRow = ({ row, data, colSpan }) => { const isOptionRow = row === "options"; const isToolRow = row === "tool"; return ( {isOptionRow ? ( diff --git a/benchexec/tablegenerator/react-table/src/data/data.json b/benchexec/tablegenerator/react-table/src/data/data.json index 65c634efd..29694f48d 100644 --- a/benchexec/tablegenerator/react-table/src/data/data.json +++ b/benchexec/tablegenerator/react-table/src/data/data.json @@ -1,79 +1,95 @@ { + "version": "3.24-dev", "head": { "branch": null, "date": { - "content": [["2015-03-03 16:13:02 CET", 6]], + "content": [ + ["2015-12-11 12:11:02 CET", 4], + ["2015-12-11 10:59:27 CET", 4] + ], "id": "date", "name": "Date of execution" }, - "displayName": { - "content": [["SimpleTest", 6]], - "id": "benchmark", - "name": "Benchmark" - }, - "host": { - "content": [["tortuga", 6]], - "id": "host", - "name": "Host" - }, + "displayName": null, + "host": { "content": [["tortuga", 8]], "id": "host", "name": "Host" }, "limit": { - "content": [["timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1", 6]], + "content": [["timelimit: 60 s, memlimit: 4000 MB, CPU core limit: 2", 8]], "id": "limits", "name": "Limits" }, "options": { "content": [ - ["-noout -setprop log.consoleLevel=WARNING -predicateAnalysis", 6] + ["", 4], + [ + "-heap 13000M -noout -disable-java-assertions -setprop cpa.predicate.memoryAllocationsAlwaysSucceed=true -predicateAnalysis-PredAbsRefiner-ABEl", + 4 + ] ], "id": "options", "name": "Options" }, "os": { - "content": [["Linux 3.13.0-45-generic x86_64", 6]], + "content": [["Linux 3.13.0-71-generic x86_64", 8]], "id": "os", "name": "OS" }, - "property": null, + "property": { + "content": [["unreach-call", 8]], + "id": "property", + "name": "Properties" + }, "runset": { - "content": [["predicateAnalysis", 6]], + "content": [ + ["cbmc", 4], + ["predicateAnalysis.ABEl", 4] + ], "id": "run", "name": "Run set" }, "system": { "content": [ [ - "CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB", - 6 + "CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz, Turbo Boost: enabled; RAM: 16783 MB", + 8 ] ], "id": "system", "name": "System" }, - "task_id_names": [ - "Task Name", - "Property" - ], + "task_id_names": ["Task name"], "title": { "content": [ ["status", 1], - ["cputime (ms)", 1], - ["cputime-h (h)", 1], - ["walltime (ns)", 1], - ["memUsage (MB)", 1], - ["memUsage-GB (GB)", 1] + ["cputime (s)", 1], + ["walltime (s)", 1], + ["memory (MB)", 1], + ["status", 1], + ["cputime (s)", 1], + ["walltime (s)", 1], + ["memory (MB)", 1] ], "id": "columnTitles", - "name": "benchexec/tablegenerator/test_integration/results/" + "name": "results/test/programs/benchmarks/" }, "tool": { - "content": [[{"tool": "CPAchecker", "version": "1.4-svn 15944M", "project_url": "https://cpachecker.sosy-lab.org"}, 6]], + "content": [ + [{ "project_url": "http://www.cprover.org/cbmc/", "tool": "CBMC" }, 4], + [ + { + "project_url": "https://cpachecker.sosy-lab.org/", + "tool": "CPAchecker", + "version": "1.4-svn 18912M" + }, + 4 + ] + ], "id": "tool", "name": "Tool" } }, "tools": [ { - "benchmarkname": "test", + "benchmarkname": "cbmc", "columns": [ { "display_title": "status", @@ -89,361 +105,792 @@ "relevant_for_diff": false, "title": "cputime", "type": "measure", - "unit": "ms" - }, - { - "display_title": "cputime-h", - "max_width": 9, - "number_of_significant_digits": 4, - "relevant_for_diff": false, - "title": "cputime", - "type": "measure", - "unit": "h" + "unit": "s" }, { "display_title": "walltime", "max_width": 8, - "number_of_significant_digits": 2, + "number_of_significant_digits": 3, "relevant_for_diff": false, "title": "walltime", "type": "measure", - "unit": "ns" + "unit": "s" }, { - "display_title": "memUsage", - "max_width": 8, - "number_of_significant_digits": 5, + "display_title": "memory", + "max_width": 6, + "number_of_significant_digits": 3, "relevant_for_diff": false, "title": "memUsage", "type": "measure", "unit": "MB" + } + ], + "cores": "8", + "cpu": "Intel Core i7-2600 CPU @ 3.40GHz", + "cpuCores": "2", + "date": "2015-12-11 12:11:02 CET", + "freq": "3401 MHz", + "generator": "BenchExec 1.5-dev", + "host": "tortuga", + "memlimit": "4000 MB", + "niceName": "cbmc", + "os": "Linux 3.13.0-71-generic x86_64", + "project_url": "http://www.cprover.org/cbmc/", + "ram": "16783 MB", + "timelimit": "60 s", + "tool": "CBMC", + "toolmodule": "benchexec.tools.cbmc", + "turbo": ", Turbo Boost: enabled" + }, + { + "benchmarkname": "predicateAnalysis", + "columns": [ + { + "display_title": "status", + "max_width": 17, + "relevant_for_diff": false, + "title": "status", + "type": "status" + }, + { + "display_title": "cputime", + "max_width": 7, + "number_of_significant_digits": 3, + "relevant_for_diff": false, + "title": "cputime", + "type": "measure", + "unit": "s" + }, + { + "display_title": "walltime", + "max_width": 8, + "number_of_significant_digits": 3, + "relevant_for_diff": false, + "title": "walltime", + "type": "measure", + "unit": "s" }, { - "display_title": "memUsage-GB", - "max_width": 11, - "number_of_significant_digits": 5, + "display_title": "memory", + "max_width": 6, + "number_of_significant_digits": 3, "relevant_for_diff": false, "title": "memUsage", "type": "measure", - "unit": "GB" + "unit": "MB" } ], "cores": "8", "cpu": "Intel Core i7-2600 CPU @ 3.40GHz", - "cpuCores": "1", - "date": "2015-03-03 16:13:02 CET", + "cpuCores": "2", + "date": "2015-12-11 10:59:27 CET", "freq": "3401 MHz", + "generator": "BenchExec 1.5-dev", "host": "tortuga", - "memlimit": "3000 MB", - "name": "predicateAnalysis", - "niceName": "predicateAnalysis", - "options": "-noout -setprop log.consoleLevel=WARNING -predicateAnalysis", - "os": "Linux 3.13.0-45-generic x86_64", - "project_url": "https://cpachecker.sosy-lab.org", - "ram": "16389384 kB", - "timelimit": "10 s", + "memlimit": "4000 MB", + "name": "ABEl", + "niceName": "predicateAnalysis.ABEl", + "options": "-heap 13000M -noout -disable-java-assertions -setprop cpa.predicate.memoryAllocationsAlwaysSucceed=true -predicateAnalysis-PredAbsRefiner-ABEl", + "os": "Linux 3.13.0-71-generic x86_64", + "project_url": "https://cpachecker.sosy-lab.org/", + "ram": "16783 MB", + "timelimit": "60 s", "tool": "CPAchecker", "toolmodule": "benchexec.tools.cpachecker", - "version": "1.4-svn 15944M" + "turbo": ", Turbo Boost: enabled", + "version": "1.4-svn 18912M" } ], "rows": [ { - "href": "task_definition.yml", - "id": [ - "task_definition.yml", - "unreach-label" - ], + "href": "test/programs/benchmarks/ntdrivers/kbfiltr_false-unreach-call.i.cil.c", + "id": ["ntdrivers/kbfiltr_false-unreach-call.i.cil.c"], "results": [ { - "category": "wrong", - "href": "results/test.2015-03-03_1613.logfiles/predicateAnalysis.implicitunsignedconversion_false-unreach-label.i.log", - "values": [ - { - "raw": "true" - }, - { - "raw": "2170" - }, - { - "html": ".0006026", - "raw": "0.0006026" - }, - { - "html": ".00000022", - "raw": "0.00000022" - }, - { - "raw": "128.03" - }, - { - "html": ".12803", - "raw": "0.12803" - } + "category": "error", + "href": "1.simple.xm.logfiles/kbfiltr_false-unreach-call.i.cil.c.log", + "values": [ + { "raw": "TIMEOUT" }, + { "html": "60.1 ", "raw": "60.092660997" }, + { "html": "60.1 ", "raw": "60.08262658119202" }, + { "html": "573", "raw": "573.120512" } + ] + }, + { + "category": "correct", + "href": "2.simple.xm.logfiles/ABEl.kbfiltr_false-unreach-call.i.cil.c.log", + "values": [ + { "raw": "false(reach)" }, + { "html": "10.8 ", "raw": "10.802769307" }, + { "html": "6.08", "raw": "6.081921339035034" }, + { "html": "219", "raw": "219.049984" } ] } ] }, { - "href": "results/test/programs/simple/switch_test_default_fallthrough_false-unreach-label.c", - "id": [ - "test/programs/simple/switch_test_default_fallthrough_false-unreach-label.c", - "unreach-label" - ], + "href": "test/programs/benchmarks/ntdrivers/parport_false-unreach-call.i.cil.c", + "id": ["ntdrivers/parport_false-unreach-call.i.cil.c"], "results": [ { "category": "correct", - "href": "https://sosy-lab.github.io/benchexec/example-table/cbmc.2015-12-11_1211.logfiles/diskperf_false-unreach-call.i.cil.c.log", - "values": [ - { - "raw": "false(reach)" - }, - { - "raw": "2190" - }, - { - "html": ".0006083", - "raw": "0.0006083" - }, - { - "html": ".00000022", - "raw": "0.00000022" - }, - { - "raw": "129.12" - }, - { - "html": ".12912", - "raw": "0.12912" - } + "href": "1.simple.xm.logfiles/parport_false-unreach-call.i.cil.c.log", + "values": [ + { "raw": "false(reach)" }, + { "html": "13.0 ", "raw": "12.973295797" }, + { "html": "13.3 ", "raw": "13.312453746795654" }, + { "html": "676", "raw": "676.438016" } + ] + }, + { + "category": "error", + "href": "2.simple.xm.logfiles/ABEl.parport_false-unreach-call.i.cil.c.log", + "values": [ + { "raw": "ERROR (recursion)" }, + { "html": "10.2 ", "raw": "10.215003701" }, + { "html": "5.94", "raw": "5.93793511390686" }, + { "html": "249", "raw": "248.709120" } ] } ] }, { - "href": "results/test/programs/simple/compoundLiteral_true-unreach-label.c", - "id": [ - "test/programs/simple/compoundLiteral_true-unreach-label.c", - "unreach-label" - ], + "href": "test/programs/benchmarks/ntdrivers/cdaudio_true-unreach-call.i.cil.c", + "id": ["ntdrivers/cdaudio_true-unreach-call.i.cil.c"], "results": [ + { + "category": "error", + "href": "1.simple.xm.logfiles/cdaudio_true-unreach-call.i.cil.c.log", + "values": [ + { "raw": "TIMEOUT" }, + { "html": "60.1 ", "raw": "60.087701827" }, + { "html": "60.4 ", "raw": "60.36625409126282" }, + { "html": "993", "raw": "992.849920" } + ] + }, { "category": "correct", - "href": "https://sosy-lab.github.io/benchexec/example-table/predicateAnalysis.2015-12-11_1059.logfiles/ABEl.diskperf_false-unreach-call.i.cil.c.log", - "values": [ - { - "raw": "true" - }, - { - "raw": "2230" - }, - { - "html": ".0006193", - "raw": "0.0006193" - }, - { - "html": ".00000022", - "raw": "0.00000022" - }, - { - "raw": "132.34" - }, - { - "html": ".13234", - "raw": "0.13234" - } + "href": "2.simple.xm.logfiles/ABEl.cdaudio_true-unreach-call.i.cil.c.log", + "values": [ + { "raw": "true" }, + { "html": "17.0 ", "raw": "16.979967005" }, + { "html": "9.18", "raw": "9.182756900787354" }, + { "html": "295", "raw": "295.165952" } ] } ] }, { - "href": "results/doc/examples/example.c", - "id": ["doc/examples/example.c"], + "href": "test/programs/benchmarks/ntdrivers/diskperf_true-unreach-call.i.cil.c", + "id": ["ntdrivers/diskperf_true-unreach-call.i.cil.c"], "results": [ { - "category": "missing", - "href": "results/test.2015-03-03_1613.logfiles/predicateAnalysis.example.c.log", - "values": [ - { - "raw": "UNKNOWN: test" - }, - { - "raw": "2270" - }, - { - "html": ".0006312", - "raw": "0.0006312" - }, - { - "html": ".00000023", - "raw": "0.00000023" - }, - { - "raw": "129.47" - }, - { - "html": ".12947", - "raw": "0.12947" - } + "category": "error", + "href": "1.simple.xm.logfiles/diskperf_true-unreach-call.i.cil.c.log", + "values": [ + { "raw": "TIMEOUT" }, + { "html": "60.2 ", "raw": "60.16850488" }, + { "html": "60.1 ", "raw": "60.147191286087036" }, + { "html": "3500", "raw": "3500.752896" } + ] + }, + { + "category": "correct", + "href": "2.simple.xm.logfiles/ABEl.diskperf_true-unreach-call.i.cil.c.log", + "values": [ + { "raw": "true" }, + { "html": "15.7 ", "raw": "15.658174815" }, + { "html": "8.89", "raw": "8.889805555343628" }, + { "html": "273", "raw": "273.440768" } ] } ] }, { - "href": "results/test/programs/simple/builtin_expect_true-unreach-label.c", - "id": [ - "test/programs/simple/builtin_expect_true-unreach-label.c", - "unreach-label" - ], + "href": "test/programs/benchmarks/ntdrivers/floppy_true-unreach-call.i.cil.c", + "id": ["ntdrivers/floppy_true-unreach-call.i.cil.c"], + "results": [ + { + "category": "error", + "href": "1.simple.xm.logfiles/floppy_true-unreach-call.i.cil.c.log", + "values": [ + { "raw": "TIMEOUT" }, + { "html": "60.0 ", "raw": "60.01963848" }, + { "html": "60.4 ", "raw": "60.35510444641113" }, + { "html": "391", "raw": "390.643712" } + ] + }, + { + "category": "correct", + "href": "2.simple.xm.logfiles/ABEl.floppy_true-unreach-call.i.cil.c.log", + "values": [ + { "raw": "true" }, + { "html": "35.6 ", "raw": "35.588045597" }, + { "html": "20.2 ", "raw": "20.206343412399292" }, + { "html": "1260", "raw": "1256.415232" } + ] + } + ] + }, + { + "href": "test/programs/benchmarks/ntdrivers/parport_true-unreach-call.i.cil.c", + "id": ["ntdrivers/parport_true-unreach-call.i.cil.c"], + "results": [ + { + "category": "error", + "href": "1.simple.xm.logfiles/parport_true-unreach-call.i.cil.c.log", + "values": [ + { "raw": "TIMEOUT" }, + { "html": "61.1 ", "raw": "61.056848841" }, + { "html": "61.7 ", "raw": "61.702879905700684" }, + { "html": "2180", "raw": "2175.901696" } + ] + }, + { + "category": "error", + "href": "2.simple.xm.logfiles/ABEl.parport_true-unreach-call.i.cil.c.log", + "values": [ + { "raw": "ERROR (recursion)" }, + { "html": "9.85", "raw": "9.851227928" }, + { "html": "6.13", "raw": "6.134266138076782" }, + { "html": "251", "raw": "251.346944" } + ] + } + ] + }, + { + "href": "test/programs/benchmarks/ssh/s3_clnt.blast.01_true-unreach-call.i.cil.c", + "id": ["ssh/s3_clnt.blast.01_true-unreach-call.i.cil.c"], + "results": [ + { + "category": "error", + "href": "1.simple.xm.logfiles/s3_clnt.blast.01_true-unreach-call.i.cil.c.log", + "values": [ + { "raw": "TIMEOUT" }, + { "html": "60.1 ", "raw": "60.074326765" }, + { "html": "60.1 ", "raw": "60.120521068573" }, + { "html": "703", "raw": "702.951424" } + ] + }, + { + "category": "correct", + "href": "2.simple.xm.logfiles/ABEl.s3_clnt.blast.01_true-unreach-call.i.cil.c.log", + "values": [ + { "raw": "true" }, + { "html": "20.6 ", "raw": "20.572045016" }, + { "html": "12.1 ", "raw": "12.06445050239563" }, + { "html": "676", "raw": "676.163584" } + ] + } + ] + }, + { + "href": "test/programs/benchmarks/ssh/s3_clnt.blast.02_true-unreach-call.i.cil.c", + "id": ["ssh/s3_clnt.blast.02_true-unreach-call.i.cil.c"], + "results": [ + { + "category": "error", + "href": "1.simple.xm.logfiles/s3_clnt.blast.02_true-unreach-call.i.cil.c.log", + "values": [ + { "raw": "TIMEOUT" }, + { "html": "60.0 ", "raw": "60.045732969" }, + { "html": "60.5 ", "raw": "60.49468970298767" }, + { "html": "654", "raw": "654.196736" } + ] + }, + { + "category": "correct", + "href": "2.simple.xm.logfiles/ABEl.s3_clnt.blast.02_true-unreach-call.i.cil.c.log", + "values": [ + { "raw": "true" }, + { "html": "21.0 ", "raw": "21.046643446" }, + { "html": "11.8 ", "raw": "11.781404495239258" }, + { "html": "665", "raw": "664.576000" } + ] + } + ] + }, + { + "href": "test/programs/benchmarks/ssh/s3_clnt.blast.03_true-unreach-call.i.cil.c", + "id": ["ssh/s3_clnt.blast.03_true-unreach-call.i.cil.c"], + "results": [ + { + "category": "error", + "href": "1.simple.xm.logfiles/s3_clnt.blast.03_true-unreach-call.i.cil.c.log", + "values": [ + { "raw": "TIMEOUT" }, + { "html": "60.1 ", "raw": "60.051921303" }, + { "html": "60.4 ", "raw": "60.406805992126465" }, + { "html": "654", "raw": "654.397440" } + ] + }, + { + "category": "correct", + "href": "2.simple.xm.logfiles/ABEl.s3_clnt.blast.03_true-unreach-call.i.cil.c.log", + "values": [ + { "raw": "true" }, + { "html": "18.4 ", "raw": "18.391569158" }, + { "html": "10.2 ", "raw": "10.197882413864136" }, + { "html": "407", "raw": "406.609920" } + ] + } + ] + }, + { + "href": "test/programs/benchmarks/ssh/s3_clnt.blast.04_true-unreach-call.i.cil.c", + "id": ["ssh/s3_clnt.blast.04_true-unreach-call.i.cil.c"], + "results": [ + { + "category": "error", + "href": "1.simple.xm.logfiles/s3_clnt.blast.04_true-unreach-call.i.cil.c.log", + "values": [ + { "raw": "TIMEOUT" }, + { "html": "60.0 ", "raw": "60.048358659" }, + { "html": "60.4 ", "raw": "60.438863039016724" }, + { "html": "656", "raw": "656.076800" } + ] + }, + { + "category": "correct", + "href": "2.simple.xm.logfiles/ABEl.s3_clnt.blast.04_true-unreach-call.i.cil.c.log", + "values": [ + { "raw": "true" }, + { "html": "16.8 ", "raw": "16.79173665" }, + { "html": "9.56", "raw": "9.564430713653564" }, + { "html": "396", "raw": "396.042240" } + ] + } + ] + }, + { + "href": "test/programs/benchmarks/ssh/s3_srvr.blast.01_true-unreach-call.i.cil.c", + "id": ["ssh/s3_srvr.blast.01_true-unreach-call.i.cil.c"], + "results": [ + { + "category": "error", + "href": "1.simple.xm.logfiles/s3_srvr.blast.01_true-unreach-call.i.cil.c.log", + "values": [ + { "raw": "TIMEOUT" }, + { "html": "60.0 ", "raw": "60.041330401" }, + { "html": "60.4 ", "raw": "60.398273944854736" }, + { "html": "843", "raw": "843.345920" } + ] + }, + { + "category": "correct", + "href": "2.simple.xm.logfiles/ABEl.s3_srvr.blast.01_true-unreach-call.i.cil.c.log", + "values": [ + { "raw": "true" }, + { "html": "37.1 ", "raw": "37.063186558" }, + { "html": "21.5 ", "raw": "21.51853919029236" }, + { "html": "1240", "raw": "1238.630400" } + ] + } + ] + }, + { + "href": "test/programs/benchmarks/ssh/s3_srvr.blast.02_true-unreach-call.i.cil.c", + "id": ["ssh/s3_srvr.blast.02_true-unreach-call.i.cil.c"], + "results": [ + { + "category": "error", + "href": "1.simple.xm.logfiles/s3_srvr.blast.02_true-unreach-call.i.cil.c.log", + "values": [ + { "raw": "TIMEOUT" }, + { "html": "60.0 ", "raw": "60.040039615" }, + { "html": "60.4 ", "raw": "60.39540433883667" }, + { "html": "796", "raw": "796.418048" } + ] + }, + { + "category": "correct", + "href": "2.simple.xm.logfiles/ABEl.s3_srvr.blast.02_true-unreach-call.i.cil.c.log", + "values": [ + { "raw": "true" }, + { "html": "34.3 ", "raw": "34.262128426" }, + { "html": "18.4 ", "raw": "18.36143398284912" }, + { "html": "705", "raw": "704.581632" } + ] + } + ] + }, + { + "href": "test/programs/benchmarks/ssh/s3_srvr.blast.06_true-unreach-call.i.cil.c", + "id": ["ssh/s3_srvr.blast.06_true-unreach-call.i.cil.c"], + "results": [ + { + "category": "error", + "href": "1.simple.xm.logfiles/s3_srvr.blast.06_true-unreach-call.i.cil.c.log", + "values": [ + { "raw": "TIMEOUT" }, + { "html": "60.1 ", "raw": "60.08266345" }, + { "html": "60.4 ", "raw": "60.395188093185425" }, + { "html": "784", "raw": "783.564800" } + ] + }, + { + "category": "correct", + "href": "2.simple.xm.logfiles/ABEl.s3_srvr.blast.06_true-unreach-call.i.cil.c.log", + "values": [ + { "raw": "true" }, + { "html": "23.6 ", "raw": "23.612995571" }, + { "html": "13.6 ", "raw": "13.572166442871094" }, + { "html": "674", "raw": "674.373632" } + ] + } + ] + }, + { + "href": "test/programs/benchmarks/ssh/s3_srvr.blast.07_true-unreach-call.i.cil.c", + "id": ["ssh/s3_srvr.blast.07_true-unreach-call.i.cil.c"], + "results": [ + { + "category": "error", + "href": "1.simple.xm.logfiles/s3_srvr.blast.07_true-unreach-call.i.cil.c.log", + "values": [ + { "raw": "TIMEOUT" }, + { "html": "60.0 ", "raw": "60.02559213" }, + { "html": "60.5 ", "raw": "60.478689432144165" }, + { "html": "811", "raw": "811.438080" } + ] + }, + { + "category": "correct", + "href": "2.simple.xm.logfiles/ABEl.s3_srvr.blast.07_true-unreach-call.i.cil.c.log", + "values": [ + { "raw": "true" }, + { "html": "32.9 ", "raw": "32.856355176" }, + { "html": "18.1 ", "raw": "18.071974992752075" }, + { "html": "702", "raw": "701.726720" } + ] + } + ] + }, + { + "href": "test/programs/benchmarks/ssh/s3_srvr.blast.08_true-unreach-call.i.cil.c", + "id": ["ssh/s3_srvr.blast.08_true-unreach-call.i.cil.c"], + "results": [ + { + "category": "error", + "href": "1.simple.xm.logfiles/s3_srvr.blast.08_true-unreach-call.i.cil.c.log", + "values": [ + { "raw": "TIMEOUT" }, + { "html": "60.1 ", "raw": "60.103748671" }, + { "html": "60.2 ", "raw": "60.17094540596008" }, + { "html": "799", "raw": "799.137792" } + ] + }, + { + "category": "correct", + "href": "2.simple.xm.logfiles/ABEl.s3_srvr.blast.08_true-unreach-call.i.cil.c.log", + "values": [ + { "raw": "true" }, + { "html": "48.1 ", "raw": "48.05946917" }, + { "html": "31.1 ", "raw": "31.079219579696655" }, + { "html": "2900", "raw": "2902.929408" } + ] + } + ] + }, + { + "href": "test/programs/benchmarks/ssh/s3_srvr.blast.09_true-unreach-call.i.cil.c", + "id": ["ssh/s3_srvr.blast.09_true-unreach-call.i.cil.c"], + "results": [ + { + "category": "error", + "href": "1.simple.xm.logfiles/s3_srvr.blast.09_true-unreach-call.i.cil.c.log", + "values": [ + { "raw": "TIMEOUT" }, + { "html": "60.0 ", "raw": "60.037022598" }, + { "html": "60.4 ", "raw": "60.386581897735596" }, + { "html": "817", "raw": "816.816128" } + ] + }, + { + "category": "correct", + "href": "2.simple.xm.logfiles/ABEl.s3_srvr.blast.09_true-unreach-call.i.cil.c.log", + "values": [ + { "raw": "true" }, + { "html": "27.6 ", "raw": "27.630450578" }, + { "html": "15.7 ", "raw": "15.716722249984741" }, + { "html": "722", "raw": "722.419712" } + ] + } + ] + }, + { + "href": "test/programs/benchmarks/ssh/s3_srvr.blast.10_true-unreach-call.i.cil.c", + "id": ["ssh/s3_srvr.blast.10_true-unreach-call.i.cil.c"], + "results": [ + { + "category": "error", + "href": "1.simple.xm.logfiles/s3_srvr.blast.10_true-unreach-call.i.cil.c.log", + "values": [ + { "raw": "TIMEOUT" }, + { "html": "60.0 ", "raw": "60.038241479" }, + { "html": "60.4 ", "raw": "60.39663076400757" }, + { "html": "797", "raw": "796.602368" } + ] + }, + { + "category": "correct", + "href": "2.simple.xm.logfiles/ABEl.s3_srvr.blast.10_true-unreach-call.i.cil.c.log", + "values": [ + { "raw": "true" }, + { "html": "30.3 ", "raw": "30.259228891" }, + { "html": "16.4 ", "raw": "16.432743072509766" }, + { "html": "688", "raw": "687.980544" } + ] + } + ] + }, + { + "href": "test/programs/benchmarks/ssh/s3_srvr.blast.12_true-unreach-call.i.cil.c", + "id": ["ssh/s3_srvr.blast.12_true-unreach-call.i.cil.c"], + "results": [ + { + "category": "error", + "href": "1.simple.xm.logfiles/s3_srvr.blast.12_true-unreach-call.i.cil.c.log", + "values": [ + { "raw": "TIMEOUT" }, + { "html": "60.1 ", "raw": "60.062430583" }, + { "html": "60.1 ", "raw": "60.11725926399231" }, + { "html": "803", "raw": "803.172352" } + ] + }, + { + "category": "correct", + "href": "2.simple.xm.logfiles/ABEl.s3_srvr.blast.12_true-unreach-call.i.cil.c.log", + "values": [ + { "raw": "true" }, + { "html": "38.0 ", "raw": "37.969951736" }, + { "html": "23.0 ", "raw": "22.956244230270386" }, + { "html": "1740", "raw": "1736.425472" } + ] + } + ] + }, + { + "href": "test/programs/benchmarks/ssh/s3_srvr.blast.13_true-unreach-call.i.cil.c", + "id": ["ssh/s3_srvr.blast.13_true-unreach-call.i.cil.c"], + "results": [ + { + "category": "error", + "href": "1.simple.xm.logfiles/s3_srvr.blast.13_true-unreach-call.i.cil.c.log", + "values": [ + { "raw": "TIMEOUT" }, + { "html": "60.1 ", "raw": "60.065674452" }, + { "html": "60.1 ", "raw": "60.111292600631714" }, + { "html": "816", "raw": "816.447488" } + ] + }, + { + "category": "error", + "href": "2.simple.xm.logfiles/ABEl.s3_srvr.blast.13_true-unreach-call.i.cil.c.log", + "values": [ + { "raw": "OUT OF MEMORY" }, + { "html": "51.2 ", "raw": "51.173798038" }, + { "html": "37.9 ", "raw": "37.875956535339355" }, + { "html": "4000", "raw": "4000.002048" } + ] + } + ] + }, + { + "href": "test/programs/benchmarks/ssh/s3_srvr.blast.14_true-unreach-call.i.cil.c", + "id": ["ssh/s3_srvr.blast.14_true-unreach-call.i.cil.c"], "results": [ + { + "category": "error", + "href": "1.simple.xm.logfiles/s3_srvr.blast.14_true-unreach-call.i.cil.c.log", + "values": [ + { "raw": "TIMEOUT" }, + { "html": "60.1 ", "raw": "60.061895485" }, + { "html": "60.1 ", "raw": "60.10968255996704" }, + { "html": "804", "raw": "803.966976" } + ] + }, { "category": "correct", - "href": "results/test.2015-03-03_1613.logfiles/predicateAnalysis.builtin_expect_true-unreach-label.c.log", - "values": [ - { - "raw": "true" - }, - { - "raw": "2060" - }, - { - "html": ".0005718", - "raw": "0.0005718" - }, - { - "html": ".00000021", - "raw": "0.00000021" - }, - { - "raw": "126.31" - }, - { - "html": ".12631", - "raw": "0.12631" - } + "href": "2.simple.xm.logfiles/ABEl.s3_srvr.blast.14_true-unreach-call.i.cil.c.log", + "values": [ + { "raw": "true" }, + { "html": "54.7 ", "raw": "54.722927255" }, + { "html": "38.0 ", "raw": "38.01971220970154" }, + { "html": "2910", "raw": "2912.804864" } + ] + } + ] + }, + { + "href": "test/programs/benchmarks/ssh/s3_srvr.blast.15_true-unreach-call.i.cil.c", + "id": ["ssh/s3_srvr.blast.15_true-unreach-call.i.cil.c"], + "results": [ + { + "category": "error", + "href": "1.simple.xm.logfiles/s3_srvr.blast.15_true-unreach-call.i.cil.c.log", + "values": [ + { "raw": "TIMEOUT" }, + { "html": "60.8 ", "raw": "60.77946326" }, + { "html": "61.5 ", "raw": "61.52742862701416" }, + { "html": "801", "raw": "801.054720" } + ] + }, + { + "category": "correct", + "href": "2.simple.xm.logfiles/ABEl.s3_srvr.blast.15_true-unreach-call.i.cil.c.log", + "values": [ + { "raw": "true" }, + { "html": "34.5 ", "raw": "34.491085816" }, + { "html": "19.9 ", "raw": "19.874998092651367" }, + { "html": "1230", "raw": "1230.516224" } + ] + } + ] + }, + { + "href": "test/programs/benchmarks/ssh/s3_srvr.blast.16_true-unreach-call.i.cil.c", + "id": ["ssh/s3_srvr.blast.16_true-unreach-call.i.cil.c"], + "results": [ + { + "category": "error", + "href": "1.simple.xm.logfiles/s3_srvr.blast.16_true-unreach-call.i.cil.c.log", + "values": [ + { "raw": "TIMEOUT" }, + { "html": "60.0 ", "raw": "60.041905289" }, + { "html": "60.1 ", "raw": "60.13985848426819" }, + { "html": "808", "raw": "807.804928" } + ] + }, + { + "category": "correct", + "href": "2.simple.xm.logfiles/ABEl.s3_srvr.blast.16_true-unreach-call.i.cil.c.log", + "values": [ + { "raw": "true" }, + { "html": "27.0 ", "raw": "26.969318489" }, + { "html": "14.8 ", "raw": "14.77264666557312" }, + { "html": "700", "raw": "699.920384" } ] } ] } ], + "initial": null, "stats": [ { "content": [ [ - { - "sum": 5 - }, - { - "avg": "2180", - "max": "2270", - "median": "2190", - "min": "2060", - "stdev": "71.9", - "sum": "10900" - }, - { - "avg": "0.0006066", - "max": "0.0006312", - "median": "0.0006083", - "min": "0.0005718", - "stdev": "0.00001996", - "sum": ".003033 " - }, - { - "avg": "0.00000020", - "max": "0.00000020", - "median": "0.00000020", - "min": "0.00000020", - "stdev": "0.00", - "sum": ".0000011 " - }, - { - "avg": "129.05", - "max": "132.34", - "median": "129.12", - "min": "126.31", - "stdev": "1.9758", - "sum": "645.27" - }, - { - "avg": "0.12905", - "max": "0.13234", - "median": "0.12912", - "min": "0.12631", - "stdev": "0.0019758", - "sum": ".64527" + { "sum": 22 }, + { + "avg": "58.0", + "max": "61.1", + "median": "60.1", + "min": "13.0", + "stdev": "9.83", + "sum": "1280  " + }, + { + "avg": "58.3", + "max": "61.7", + "median": "60.4", + "min": "13.3", + "stdev": "9.82", + "sum": "1280  " + }, + { + "avg": "939", + "max": "3500", + "median": "800", + "min": "391", + "stdev": "643", + "sum": "20700" + } + ], + [ + { "sum": 22 }, + { + "avg": "28.0", + "max": "54.7", + "median": "27.3", + "min": "9.85", + "stdev": "12.7", + "sum": "615  " + }, + { + "avg": "16.7", + "max": "38.0", + "median": "15.2", + "min": "5.94", + "stdev": "9.07", + "sum": "368   " + }, + { + "avg": "1040", + "max": "4000", + "median": "694", + "min": "219", + "stdev": "982", + "sum": "22900" } ] ], - "description": "in total 2 true tasks, 2 false tasks", "id": "total" }, { "content": [ [ - null, - { - "sum": "10900" - }, - { - "sum": ".003037 " - }, - { - "sum": ".0000012 " - }, - null, - null - ] - ], - "description": "(This line contains some statistics from local execution. Only trust those values, if you use your own computer.)", - "id": "local", - "title": "local summary" - }, - { - "content": [ + { "sum": 1 }, + { + "avg": "13.0", + "max": "13.0", + "median": "13.0", + "min": "13.0", + "stdev": "0.000", + "sum": "13.0" + }, + { + "avg": "13.3", + "max": "13.3", + "median": "13.3", + "min": "13.3", + "stdev": "0.000", + "sum": "13.3" + }, + { + "avg": "676", + "max": "676", + "median": "676", + "min": "676", + "stdev": "0.000", + "sum": "676" + } + ], [ - { - "sum": 3 - }, - { - "avg": "2160", - "max": "2230", - "median": "2190", - "min": "2060", - "stdev": "73.0", - "sum": "6480" - }, - { - "avg": "0.0005998", - "max": "0.0006193", - "median": "0.0006083", - "min": "0.0005718", - "stdev": "0.00002029", - "sum": ".001799 " - }, - { - "avg": "0.00000020", - "max": "0.00000020", - "median": "0.00000020", - "min": "0.00000020", - "stdev": "0.00", - "sum": ".00000065" - }, - { - "avg": "129.26", - "max": "132.34", - "median": "129.12", - "min": "126.31", - "stdev": "2.4617", - "sum": "387.77" - }, - { - "avg": "0.12926", - "max": "0.13234", - "median": "0.12912", - "min": "0.12631", - "stdev": "0.0024617", - "sum": ".38777" + { "sum": 19 }, + { + "avg": "28.6", + "max": "54.7", + "median": "27.6", + "min": "10.8", + "stdev": "11.2", + "sum": "544  " + }, + { + "avg": "16.8", + "max": "38.0", + "median": "15.7", + "min": "6.08", + "stdev": "7.73", + "sum": "318   " + }, + { + "avg": "968", + "max": "2910", + "median": "700", + "min": "219", + "stdev": "764", + "sum": "18400" } ] ], @@ -451,49 +898,32 @@ }, { "content": [ + [{ "sum": 0 }, null, null, null], [ - { - "sum": 2 - }, - { - "avg": "2140", - "max": "2230", - "median": "2140", - "min": "2060", - "stdev": "85.4", - "sum": "4290" - }, - { - "avg": "0.0005956", - "max": "0.0006193", - "median": "0.0005956", - "min": "0.0005718", - "stdev": "0.00002374", - "sum": ".001191 " - }, - { - "avg": "0.00000020", - "max": "0.00000020", - "median": "0.00000020", - "min": "0.00000020", - "stdev": "0.00", - "sum": ".00000043" - }, - { - "avg": "129.33", - "max": "132.34", - "median": "129.33", - "min": "126.31", - "stdev": "3.0126", - "sum": "258.65" - }, - { - "avg": "0.12933", - "max": "0.13234", - "median": "0.12933", - "min": "0.12631", - "stdev": "0.0030126", - "sum": ".25865" + { "sum": 18 }, + { + "avg": "29.6", + "max": "54.7", + "median": "28.9", + "min": "15.7", + "stdev": "10.6", + "sum": "533  " + }, + { + "avg": "17.3", + "max": "38.0", + "median": "16.1", + "min": "8.89", + "stdev": "7.51", + "sum": "312   " + }, + { + "avg": "1010", + "max": "2910", + "median": "701", + "min": "273", + "stdev": "764", + "sum": "18200" } ] ], @@ -502,48 +932,57 @@ { "content": [ [ - { - "sum": 1 - }, - { - "avg": "2190", - "max": "2190", - "median": "2190", - "min": "2190", - "stdev": "0", - "sum": "2190" - }, - { - "avg": "0.0006083", - "max": "0.0006083", - "median": "0.0006083", - "min": "0.0006083", - "stdev": "0", - "sum": ".0006083" - }, - { - "avg": "0.00000020", - "max": "0.00000020", - "median": "0.00000020", - "min": "0.00000020", - "stdev": "0", - "sum": ".00000022" - }, - { - "avg": "129.12", - "max": "129.12", - "median": "129.12", - "min": "129.12", - "stdev": "0", - "sum": "129.12" - }, - { - "avg": "0.12912", - "max": "0.12912", - "median": "0.12912", - "min": "0.12912", - "stdev": "0", - "sum": ".12912" + { "sum": 1 }, + { + "avg": "13.0", + "max": "13.0", + "median": "13.0", + "min": "13.0", + "stdev": "0.000", + "sum": "13.0" + }, + { + "avg": "13.3", + "max": "13.3", + "median": "13.3", + "min": "13.3", + "stdev": "0.000", + "sum": "13.3" + }, + { + "avg": "676", + "max": "676", + "median": "676", + "min": "676", + "stdev": "0.000", + "sum": "676" + } + ], + [ + { "sum": 1 }, + { + "avg": "10.8", + "max": "10.8", + "median": "10.8", + "min": "10.8", + "stdev": "0.000", + "sum": "10.8" + }, + { + "avg": "6.08", + "max": "6.08", + "median": "6.08", + "min": "6.08", + "stdev": "0.000", + "sum": "6.08" + }, + { + "avg": "219", + "max": "219", + "median": "219", + "min": "219", + "stdev": "0.000", + "sum": "219" } ] ], @@ -551,135 +990,24 @@ }, { "content": [ - [ - { - "sum": 1 - }, - { - "avg": "2170", - "max": "2170", - "median": "2170", - "min": "2170", - "stdev": "0", - "sum": "2170" - }, - { - "avg": "0.0006026", - "max": "0.0006026", - "median": "0.0006026", - "min": "0.0006026", - "stdev": "0", - "sum": ".0006026" - }, - { - "avg": "0.00000020", - "max": "0.00000020", - "median": "0.00000020", - "min": "0.00000020", - "stdev": "0", - "sum": ".00000022" - }, - { - "avg": "128.03", - "max": "128.03", - "median": "128.03", - "min": "128.03", - "stdev": "0", - "sum": "128.03" - }, - { - "avg": "0.12803", - "max": "0.12803", - "median": "0.12803", - "min": "0.12803", - "stdev": "0", - "sum": ".12803" - } - ] + [{ "sum": 0 }, null, null, null], + [{ "sum": 0 }, null, null, null] ], "id": "wrong" }, { "content": [ - [ - { - "sum": 1 - }, - { - "avg": "2170", - "max": "2170", - "median": "2170", - "min": "2170", - "stdev": "0", - "sum": "2170" - }, - { - "avg": "0.0006026", - "max": "0.0006026", - "median": "0.0006026", - "min": "0.0006026", - "stdev": "0", - "sum": ".0006026" - }, - { - "avg": "0.00000020", - "max": "0.00000020", - "median": "0.00000020", - "min": "0.00000020", - "stdev": "0", - "sum": ".00000022" - }, - { - "avg": "128.03", - "max": "128.03", - "median": "128.03", - "min": "128.03", - "stdev": "0", - "sum": "128.03" - }, - { - "avg": "0.12803", - "max": "0.12803", - "median": "0.12803", - "min": "0.12803", - "stdev": "0", - "sum": ".12803" - } - ] + [{ "sum": 0 }, null, null, null], + [{ "sum": 0 }, null, null, null] ], "id": "wrong_true" }, { "content": [ - [ - { - "sum": 0 - }, - null, - null, - null, - null, - null - ] + [{ "sum": 0 }, null, null, null], + [{ "sum": 0 }, null, null, null] ], "id": "wrong_false" - }, - { - "content": [ - [ - { - "sum": -27 - }, - null, - null, - null, - null, - null - ] - ], - "description": "in total 2 true tasks, 2 false tasks", - "id": "score", - "title": "score (5 tasks, max score: 6)" } ] } From 9e4123b5c904eb8e3035b7aa9f6e8a44340a9c00 Mon Sep 17 00:00:00 2001 From: EshaanAgg <96648934+EshaanAgg@users.noreply.github.com> Date: Thu, 25 Jul 2024 11:56:09 +0530 Subject: [PATCH 03/15] add filtering and hidding columns improvements --- .../tablegenerator/react-table/src/App.scss | 3 +- .../src/components/StatisticsTable.js | 402 ++++-------------- .../react-table/src/components/Summary.js | 333 +++++++++++---- .../src/components/TableComponents.js | 4 +- .../react-table/src/utils/utils.js | 15 +- 5 files changed, 340 insertions(+), 417 deletions(-) diff --git a/benchexec/tablegenerator/react-table/src/App.scss b/benchexec/tablegenerator/react-table/src/App.scss index 8653756ce..fdf8b7064 100644 --- a/benchexec/tablegenerator/react-table/src/App.scss +++ b/benchexec/tablegenerator/react-table/src/App.scss @@ -513,9 +513,10 @@ $content-height: calc(100vh - 43px); // height of .menu sums up to 43px } .selectColumns { - display: block; text-overflow: ellipsis; overflow: hidden; + border: #555; + border-radius: 5px; } } } diff --git a/benchexec/tablegenerator/react-table/src/components/StatisticsTable.js b/benchexec/tablegenerator/react-table/src/components/StatisticsTable.js index d9a36fb11..3d0c631c4 100644 --- a/benchexec/tablegenerator/react-table/src/components/StatisticsTable.js +++ b/benchexec/tablegenerator/react-table/src/components/StatisticsTable.js @@ -1,36 +1,18 @@ -// This file is part of BenchExec, a framework for reliable benchmarking: -// https://github.com/sosy-lab/benchexec -// -// SPDX-FileCopyrightText: 2019-2020 Dirk Beyer -// -// SPDX-License-Identifier: Apache-2.0 - -import React, { useState, useMemo, useEffect } from "react"; - +import React, { useMemo } from "react"; import { - useTable, useFilters, - useResizeColumns, useFlexLayout, + useResizeColumns, + useTable, } from "react-table"; +import { StandardColumnHeader } from "./TableComponents"; import { useSticky } from "react-table-sticky"; import { - createRunSetColumns, - SelectColumnsButton, - StandardColumnHeader, -} from "./TableComponents"; -import { computeStats, statisticsRows } from "../utils/stats.js"; -import { - determineColumnWidth, - isNumericColumn, isNil, + isNumericColumn, getHiddenColIds, + determineColumnWidth, } from "../utils/utils"; -import { BenchmarkSetupRow } from "./Summary.js"; - -const isTestEnv = process.env.NODE_ENV === "test"; - -const titleColWidth = window.innerWidth * 0.15; const renderTooltip = (cell) => Object.keys(cell) @@ -38,195 +20,14 @@ const renderTooltip = (cell) => .map((key) => `${key}: ${cell[key]}`) .join(", ") || undefined; -const StatisticsTable = ({ - selectColumn, - tools, - switchToQuantile, - hiddenCols, - tableData, - onStatsReady, - stats: defaultStats, - filtered = false, - benchmarkSetupData, -}) => { - // We want to skip stat calculation in a test environment if not - // specifically wanted (signaled by a passed onStatsReady callback function) - const skipStats = isTestEnv && !onStatsReady; - - // When filtered, initialize with empty statistics until computed statistics - // are available in order to prevent briefly showing the wrong statistics. - const [stats, setStats] = useState(filtered ? [] : defaultStats); - const [isTitleColSticky, setTitleColSticky] = useState(true); - - // we want to trigger a re-calculation of our stats whenever data changes. - useEffect(() => { - const updateStats = async () => { - if (filtered) { - const newStats = await computeStats({ - tools, - tableData, - stats: defaultStats, - }); - setStats(newStats); - } else { - setStats(defaultStats); - } - if (onStatsReady) { - onStatsReady(); - } - }; - if (!skipStats) { - updateStats(); // necessary such that hook is not async - } - }, [tools, tableData, onStatsReady, skipStats, defaultStats, filtered]); - - /** - * Render the table header. It can display two kinds of header groups: - * 1. Toolset Header Group: includes the toolset names. It has the type "toolset". - * 2. Columns Header Group: includes the column names. It has the type "columns". - * @param {*} headerGroup The header group to render - * @param {string} type The type of the header group. Can be "toolset" or "columns". - * @returns {JSX.Element} - */ - const renderTableHeader = (headerGroup, type) => ( -
    -
    - {headerGroup.headers.map((header) => ( -
    - {header.render("Header")} - {(!header.className || !header.className.includes("separator")) && ( -
    - )} -
    - ))} -
    -
    - ); - - /** - * Render the table data rows. - * These rows contain the statistics data that is the bottom part of the table. - * @param {*} rows The rows to render - * @returns {JSX.Element} - */ - const renderTableDataRows = (rows) => ( -
    - {rows.map((row) => { - prepareRow(row); - console.log("Row Values: ", row.values); - return ( -
    - {row.cells.map((cell) => ( -
    - {cell.render("Cell")} -
    - ))} -
    - ); - })} -
    - ); - - /** - * Render the benchmark setup row. - * @param {*} row The row to render - * @returns {JSX.Element} - */ - const renderBenchmarkSetupRows = (rows) => { - // return rows.map((row) => ( - //
    - // {row.name} - // {row.content.map((tool, j) => ( - // - // ))} - //
    - // )); - - return rows.map((row) => { - prepareRow(row); - console.log("Benchmark Setup Row : ", row); - console.log("Benchmark Setup Row Original: ", row.original.content); - return ( -
    - {row.cells.map((cell) => ( -
    - {cell.column.id.includes("summary") || - cell.column.id.includes("summary") ? ( - cell.render("Cell") - ) : ( -
    Testing
    - )} -
    - ))} -
    - ); - }); - }; - - const renderTable = (headerGroups, rows) => { - if (filtered && stats.length === 0) { - return ( -

    - Please wait while the statistics are being calculated. -

    - ); - } - - if (headerGroups.length !== 2) - throw new Error( - `Unexpected number of header groups. Expected 2 (1 for toolset, 1 for statistics columns). Got ${headerGroups.length}.`, - ); - - const [toolsetNameHeaderGroup, columnsHeaderGroup] = headerGroups; - const benchmarkSetupData = rows.filter( - (row) => row.original.type === "benchmark_setup", - ); - const statsData = rows.filter((row) => row.original.type === "statistics"); - - return ( -
    -
    -
    -
    - {renderTableHeader(toolsetNameHeaderGroup, "toolset")} - {renderBenchmarkSetupRows(benchmarkSetupData)} - {renderTableHeader(columnsHeaderGroup, "columns")} - {renderTableDataRows(statsData)} -
    -
    -
    -
    - ); - }; +const StatisticsTable = ({ switchToQuantile, tableData, hiddenCols }) => { + const { runSet, runSetStats, runSetIndex } = tableData; const columns = useMemo(() => { const createColumnBuilder = - ({ switchToQuantile, hiddenCols }) => - (runSetIdx, column, columnIdx) => ({ - id: `${runSetIdx}_${column.display_title}_${columnIdx}`, + ({ switchToQuantile }) => + (column, columnIdx) => ({ + id: `${runSetIndex}_${column.display_title}_${columnIdx}`, Header: ( ), hidden: - hiddenCols[runSetIdx].includes(column.colIdx) || + hiddenCols[runSetIndex].includes(columnIdx) || !(isNumericColumn(column) || column.type === "status"), width: determineColumnWidth( column, @@ -244,25 +45,23 @@ const StatisticsTable = ({ column.type === "status" ? 6 : null, ), minWidth: 30, - accessor: (row) => - row.type === "statistics" - ? row.content[runSetIdx][columnIdx] - : row.content, + accessor: (row) => { + return row.content[runSetIndex][columnIdx]; + }, Cell: (cell) => { let valueToRender = cell.value?.sum; + // We handle status differently as the main aggregation (denoted "sum") + // is of type "count" for this column type. + // This means that the default value if no data is available is 0 if (column.type === "status") { - // We handle status differently as the main aggregation (denoted "sum") - // is of type "count" for this column type. - // This means that the default value if no data is available is 0 if (cell.value === undefined) { // No data is available, default to 0 valueToRender = 0; } else if (cell.value === null) { // We receive a null value directly from the stats object of the dataset. // Will be rendered as "-" - // This edge case only applies to the local summary as it includes static values + // This edge case only applies to the local summary as it contains static values // that we can not calculate and therefore directly take them from the stats object. - valueToRender = null; } else { valueToRender = Number.isInteger(Number(cell.value.sum)) @@ -270,6 +69,7 @@ const StatisticsTable = ({ : cell.value.sum; } } + return !isNil(valueToRender) ? (
    ({ - Header: () => ( -
    - -
    - ), - id: "row-title", - sticky: isTitleColSticky ? "left" : "", - width: titleColWidth, - minWidth: 100, - columns: [ - { - id: "summary", - width: titleColWidth, - minWidth: 100, - Header: , - enableColSpan: true, - Cell: (cell) => - cell.row.original.type === "benchmark_setup" ? ( - <>{cell.row.original.name} - ) : ( -
    - ), - }, - ], - }); - - const statColumns = tools - .map((runSet, runSetIdx) => - createRunSetColumns( - runSet, - runSetIdx, - createColumnBuilder({ switchToQuantile, hiddenCols }), - ), + const statColumns = runSet.columns + .map((column, columnIdx) => + createColumnBuilder({ switchToQuantile })(column, columnIdx), ) .flat(); - return [createRowTitleColumn()].concat(statColumns); - }, [ - filtered, - isTitleColSticky, - switchToQuantile, - hiddenCols, - selectColumn, - tools, - ]); + return statColumns; + }, [switchToQuantile, runSet, runSetIndex, hiddenCols]); - /** The data for the table is a combination of the benchmark setup data and the statistics data - * Each row is tagged with a type to distinguish between the two. - * type: "benchmark_setup" | "statistics" - * The benchmark rows are displayed first followed by the statistics rows. - * */ - const data = useMemo(() => { - return [ - ...benchmarkSetupData.map((b) => ({ - type: "benchmark_setup", - ...b, - })), - ...stats.map((s) => ({ - type: "statistics", - ...s, - })), - ]; - }, [stats, benchmarkSetupData]); + const data = useMemo(() => runSetStats, [runSetStats]); - console.log("Data", data); + const renderTableHeaders = (headerGroups) => ( +
    + {headerGroups.map((headerGroup) => ( +
    + {headerGroup.headers.map((header) => ( +
    + {header.render("Header")} + + {(!header.className || + !header.className.includes("separator")) && ( +
    + )} +
    + ))} +
    + ))} +
    + ); + + const renderTableData = (rows) => ( +
    + {rows.map((row) => { + prepareRow(row); + return ( +
    + {row.cells.map((cell) => ( +
    + {cell.render("Cell")} +
    + ))} +
    + ); + })} +
    + ); + + const renderTable = (headerGroups, rows) => { + return ( +
    +
    +
    +
    + {renderTableHeaders(headerGroups)} + {renderTableData(rows)} +
    +
    +
    +
    + ); + }; const { getTableProps, getTableBodyProps, headerGroups, rows, prepareRow } = useTable( @@ -390,13 +174,7 @@ const StatisticsTable = ({ useFlexLayout, useSticky, ); - - return ( -
    -

    Statistics

    - {renderTable(headerGroups, rows)} -
    - ); + return
    {renderTable(headerGroups, rows)}
    ; }; export default StatisticsTable; diff --git a/benchexec/tablegenerator/react-table/src/components/Summary.js b/benchexec/tablegenerator/react-table/src/components/Summary.js index f398a9a51..37bfd340c 100644 --- a/benchexec/tablegenerator/react-table/src/components/Summary.js +++ b/benchexec/tablegenerator/react-table/src/components/Summary.js @@ -5,7 +5,10 @@ // // SPDX-License-Identifier: Apache-2.0 -import React from "react"; +import React, { useMemo, useState, useEffect } from "react"; +import { useFlexLayout, useResizeColumns, useTable } from "react-table"; +import { statisticsRows, computeStats } from "../utils/stats"; +import { SelectColumnsButton } from "./TableComponents"; import StatisticsTable from "./StatisticsTable"; const infos = [ @@ -22,25 +25,26 @@ const infos = [ "property", ]; -/** - * JSX component for rendering the options of a tool. - * @prop {string} text - The string containing the options. - * @returns {JSX.Element} - */ -const ToolOptions = ({ text }) => { - return text.split(/[\s]+-/).map((option, i) => ( -
  • - {i === 0 ? option : `-${option}`} -
  • - )); +const isTestEnv = process.env.NODE_ENV === "test"; + +// Renders the options of a tool in a list +const Options = ({ text }) => { + if (!text) { + return null; + } + + return ( +
      + {text.split(/[\s]+-/).map((option, i) => ( +
    • + {i === 0 ? option : `-${option}`} +
    • + ))} +
    + ); }; -/** - * JSX component for rendering an external link. - * @prop {string} text - The string to display for the link. - * @prop {string} url - The URL to link to. - * @returns {JSX.Element} - */ +// Renders a link to a tool and its version const ExternalLink = ({ url, text }) => { if (url) { return ( @@ -53,14 +57,7 @@ const ExternalLink = ({ url, text }) => { return <>{text}; }; -/** - * JSX component for rendering the name and version of a tool. - * @prop {string} tool - The name of the tool. - * @prop {string} version - The version of the tool. - * @prop {string} project_url - The URL of the project. - * @prop {string} version_url - The URL of the version. - * @returns {JSX.Element} - */ +// Renders the name of a tool and its version const ToolNameAndVersion = ({ tool, version, project_url, version_url }) => { return ( <> @@ -70,85 +67,239 @@ const ToolNameAndVersion = ({ tool, version, project_url, version_url }) => { ); }; -/** - * JSX component for rendering the benchmark setup row. - * @prop {string} row - The row type. - * @prop {string|Array} data - The data to display. - * @prop {number} colSpan - The column span of the cell. - * @prop {number} index - The index of the cell. - * @returns {JSX.Element} - */ -export const BenchmarkSetupRow = ({ row, data, colSpan }) => { - const isOptionRow = row === "options"; - const isToolRow = row === "tool"; +const Summary = ({ + tools, + tableHeader, + version, + selectColumn, + stats: defaultStats, + onStatsReady, + switchToQuantile, + tableData, + hiddenCols, + filtered, +}) => { + // We want to skip stat calculation in a test environment if not + // specifically wanted (signaled by a passed onStatsReady callback function) + const skipStats = isTestEnv && !onStatsReady; - return ( - - {isOptionRow ? ( -
      - -
    - ) : isToolRow ? ( - - ) : ( - data - )} - - ); -}; + const [isTitleColSticky, setTitleColSticky] = useState(true); + + // When filtered, initialize with empty statistics until computed statistics + // are available in order to prevent briefly showing the wrong statistics. + const [stats, setStats] = useState(filtered ? [] : defaultStats); + + // We want to trigger a re-calculation of our stats whenever data changes. + useEffect(() => { + const updateStats = async () => { + if (filtered) { + const newStats = await computeStats({ + tools, + tableData, + stats: defaultStats, + }); + setStats(newStats); + } else { + setStats(stats); + } + if (onStatsReady) { + onStatsReady(); + } + }; + + if (!skipStats) { + // This is necessary as the hook is not async + updateStats(); + } + }, [ + tools, + tableData, + onStatsReady, + skipStats, + stats, + filtered, + defaultStats, + ]); -const Summary = (props) => { - const benchmarkSetupData = infos - .map((row) => props.tableHeader[row]) - .filter((row) => row !== null); + const BenchmarkCols = useMemo(() => { + let colArray = []; + + infos.forEach((row) => { + let tableHeaderRow = tableHeader[row]; + if (tableHeaderRow) { + colArray.push({ + accessor: tableHeaderRow.id, + Header: tableHeaderRow.name, + minWidth: 280, + sticky: "left", + }); + } + }); + + colArray.push({ + Header: , + id: "columnselect", + accessor: "columnselect", + minWidth: 100, + statisticTable: true, + }); + + for (const stat in stats) { + if (stats[stat].title) { + colArray.push({ + Header: stats[stat].title, + stats: true, + }); + } else { + colArray.push({ + Header: + "\xa0".repeat(4 * statisticsRows[stats[stat].id].indent) + + statisticsRows[stats[stat].id].title + + (filtered ? " of selected rows" : ""), + stats: true, + minWidth: 340, + }); + } + } + + return colArray; + }, [tableHeader, stats, selectColumn, filtered]); + + const BenchmarkData = useMemo(() => { + let dataArray = []; + + tools.forEach((runSet, runSetIndex) => { + dataArray.push({ + colspan: { + columnselect: tableHeader.tool.content[runSetIndex][1], + }, + columnselect: { + runSet, + runSetIndex: runSetIndex, + runSetStats: stats, + }, + }); + }); + + infos.forEach((row) => { + let tableHeaderRow = tableHeader[row]; + if (tableHeaderRow) { + tableHeaderRow.content.forEach((cont, index) => { + let dataElement = dataArray[index]; + dataArray[index] = { + ...dataElement, + [tableHeaderRow.id]: cont[0], + colspan: { ...dataElement.colspan, [tableHeaderRow.id]: cont[1] }, + }; + }); + } + }); + + return dataArray; + }, [tableHeader, tools, stats]); + + const { getTableProps, getTableBodyProps, headers, rows, prepareRow } = + useTable( + { columns: BenchmarkCols, data: BenchmarkData }, + useFlexLayout, + useResizeColumns, + ); return (
    - {/*
    -

    Benchmark Setup

    - - - {benchmarkSetupData.map((row) => ( - - - {row.content.map((tool, j) => ( - - ))} - - ))} +

    Benchmark Setup

    +
    +
    + + setTitleColSticky(target.checked)} + /> + +
    {row.name}
    + + {headers.map((col, index) => { + return ( + + + {!col.stats && + rows.map((row, index) => { + prepareRow(row); + if (row.values[col.id] === undefined) { + return null; + } + + return ( + + ); + })} + + ); + })}
    + {col.render("Header")} +
    +
    + {col.id === "columnselect" ? ( + + ) : col.id === "options" ? ( +
      + +
    + ) : col.id === "tool" ? ( + + ) : ( + row.values[col.id] + )} +
    -
    */} - - +

    - Generated by {""} + Generated by{" "} - BenchExec {props.version} + {" "} + BenchExec {version}

    diff --git a/benchexec/tablegenerator/react-table/src/components/TableComponents.js b/benchexec/tablegenerator/react-table/src/components/TableComponents.js index c6dbef5e2..2496f6911 100644 --- a/benchexec/tablegenerator/react-table/src/components/TableComponents.js +++ b/benchexec/tablegenerator/react-table/src/components/TableComponents.js @@ -9,9 +9,9 @@ import React from "react"; import { formatColumnTitle, getRunSetName } from "../utils/utils.js"; export const SelectColumnsButton = ({ handler, ...other }) => ( - + ); export const StandardColumnHeader = ({ diff --git a/benchexec/tablegenerator/react-table/src/utils/utils.js b/benchexec/tablegenerator/react-table/src/utils/utils.js index d087ee33f..b8b92f4a7 100644 --- a/benchexec/tablegenerator/react-table/src/utils/utils.js +++ b/benchexec/tablegenerator/react-table/src/utils/utils.js @@ -1148,20 +1148,13 @@ const getStep = (num) => { }; const identity = (x) => x; + /** - * Computes and returns all ids of the given columns that are hidden. Assumes that - * the columns object is in the format that is used in the ReactTable and Summary component. + * Computes and returns all IDs of the given columns that are hidden. Assumes + * that each column object has a boolean property 'hidden' and a string property 'id'. */ const getHiddenColIds = (columns) => { - const hiddenColIds = []; - // Idx 0 is the title column and every uneven idx is the separator column, so only check for hidden cols in every even column entry greater than 0 - columns = columns.filter((col, idx) => idx % 2 === 0 && idx !== 0); - columns.forEach((col) => - hiddenColIds.push( - col.columns.filter((column) => column.hidden).map((column) => column.id), - ), - ); - return hiddenColIds.flat(); + return columns.filter((c) => c.hidden).map((c) => c.id); }; export { From 7a45292cb7952601640ee559f195d1162de6d282 Mon Sep 17 00:00:00 2001 From: EshaanAgg <96648934+EshaanAgg@users.noreply.github.com> Date: Thu, 25 Jul 2024 18:51:48 +0530 Subject: [PATCH 04/15] update UI and some snapshots --- .../tablegenerator/react-table/src/App.scss | 14 +- .../react-table/src/components/Summary.js | 47 +- .../tests/__snapshots__/Summary.test.js.snap | 120555 ++++++++------- 3 files changed, 62475 insertions(+), 58141 deletions(-) diff --git a/benchexec/tablegenerator/react-table/src/App.scss b/benchexec/tablegenerator/react-table/src/App.scss index fdf8b7064..bdf10c2a1 100644 --- a/benchexec/tablegenerator/react-table/src/App.scss +++ b/benchexec/tablegenerator/react-table/src/App.scss @@ -460,8 +460,21 @@ $content-height: calc(100vh - 43px); // height of .menu sums up to 43px font-weight: bold; } + th { + background-color: white; + + &.sticky { + position: sticky !important; + left: 0; + z-index: 11; + } + } + tr:nth-child(even) { background-color: mix($hover-color, white, 33%); + th { + background-color: mix($hover-color, white, 33%); + } } tr:hover { @@ -516,7 +529,6 @@ $content-height: calc(100vh - 43px); // height of .menu sums up to 43px text-overflow: ellipsis; overflow: hidden; border: #555; - border-radius: 5px; } } } diff --git a/benchexec/tablegenerator/react-table/src/components/Summary.js b/benchexec/tablegenerator/react-table/src/components/Summary.js index 37bfd340c..3294d02bd 100644 --- a/benchexec/tablegenerator/react-table/src/components/Summary.js +++ b/benchexec/tablegenerator/react-table/src/components/Summary.js @@ -34,7 +34,7 @@ const Options = ({ text }) => { } return ( -
      +
        {text.split(/[\s]+-/).map((option, i) => (
      • {i === 0 ? option : `-${option}`} @@ -130,7 +130,6 @@ const Summary = ({ colArray.push({ accessor: tableHeaderRow.id, Header: tableHeaderRow.name, - minWidth: 280, sticky: "left", }); } @@ -140,7 +139,6 @@ const Summary = ({ Header: , id: "columnselect", accessor: "columnselect", - minWidth: 100, statisticTable: true, }); @@ -157,7 +155,7 @@ const Summary = ({ statisticsRows[stats[stat].id].title + (filtered ? " of selected rows" : ""), stats: true, - minWidth: 340, + width: 250, }); } } @@ -208,6 +206,7 @@ const Summary = ({ return (

        Benchmark Setup

        +
        +

        Generated by{" "} - {" "} BenchExec {version}

        diff --git a/benchexec/tablegenerator/react-table/src/tests/__snapshots__/Summary.test.js.snap b/benchexec/tablegenerator/react-table/src/tests/__snapshots__/Summary.test.js.snap index 4de113f32..ddb190249 100644 --- a/benchexec/tablegenerator/react-table/src/tests/__snapshots__/Summary.test.js.snap +++ b/benchexec/tablegenerator/react-table/src/tests/__snapshots__/Summary.test.js.snap @@ -4,758 +4,935 @@ exports[`Render Summary for benchmark-example-true.2019-11-06_0932.results.no op
        +

        + Benchmark Setup +

        -

        - Benchmark Setup -

        - - - - + + + + + + + + + + + +
        +
        + + +
        + + + + - - + - - + - - + - - + - - + - - + - - + - - -
        Tool + DummyTool
        +
        Limits + timelimit: -, memlimit: -, CPU core limit: -
        +
        Host + t460p
        +
        OS + Linux-5.0.0-32-generic-x86_64-with-Ubuntu-18.04-bionic
        +
        System + CPU: Intel Core i5-6440HQ CPU @ 2.60GHz, cores: 4, frequency: 3500 MHz, Turbo Boost: enabled; RAM: 33587 MB
        +
        Date of execution + 2019-11-06 09:32:28 CET
        +
        Run set + no options
        +
        Options + -
          -
        • - - true - -
        • -
        -
        - -
        -

        - Statistics -

        -
        -
        -
        -
        -
        -
        -
        -
        - -
        -
        -
        -
        -
        - - DummyTool 2019-11-06 09:32:28 CET no options - -
        -
        -
        + + true + + + + + +
        + + + +
        - - Click here to select columns - -
        -
        -
        - -
        -
        -
        - status -
        -
        -
        -
        -
        - cputime -
        - (s) -
        -
        -
        -
        - walltime -
        - (s) -
        -
        -
        -
        -
        - memory -
        - (MB) + > +
        +
        +
        +
        + status +
        +
        +
        +
        +
        + cputime +
        + (s) +
        +
        +
        +
        +
        + walltime +
        + (s) +
        +
        +
        +
        +
        + memory +
        + (MB) +
        +
        +
        +
        +
        + cpuenergy +
        + (J) +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        + - +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        + - +
        +
        +
        +
        +
        +
        +
        +
        -
        -
        -
        -
        - cpuenergy -
        - (J) -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        +
        + all results + +
        + local summary + +

        Generated by @@ -775,23 +952,84 @@ exports[`Render Summary for big-table.diff.html 1`] = `

        +

        + Benchmark Setup +

        -

        - Benchmark Setup -

        - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        + + +
        + + + + - - + - - + - - + - - + - - + - - + - - + - + draggable={false} + role="separator" + style={ + Object { + "background": "rgba(0, 0, 0, 0.1)", + "cursor": "col-resize", + "margin": "0px", + "padding": "0px", + } + } + /> - - -
        Tool +
        +
        Limits + timelimit: 60 s, memlimit: 3000 MB, CPU core limit: 2 timelimit: 60 s, memlimit: 3000 MB, CPU core limit: 1 timelimit: 60 s, memlimit: 3000 MB, CPU core limit: 2
        +
        Host + [aal; aesche; aitel; babylon5; barbe; barsch; brachse; cayman*; cs-sel-05; cs-sel-06; deathstar; ds9; elysium; empoknor; excelsior; falcon; forelle; hausen; hecht; huchen; mt-farm01; mt-farm02; mt-farm03; mt-farm04; nervling; neunauge; node-*; saibling; saratoga; sovereign; tardis; voyager; zeus*] [mt-farm01; mt-farm02; mt-farm03; mt-farm04] node-*
        +
        OS + [Linux 4.0.5-gentoo; Linux 3.13.0-66-generic; Linux 3.13.0-65-generic; Linux 3.13.0-55-generic; Linux 3.16.0-4-amd64; Linux 3.0.80-0.7-default] Linux 3.16.0-4-amd64 Linux 3.0.80-0.7-default
        +
        System + CPU: [Intel Core i7-4790 @ 3.60 GHz; Intel Core i7-4770 @ 3.40 GHz; Intel Core i7-2600K @ 3.40 GHz; AMD Opteron 6380; Intel Xeon E7- 4870 @ 2.40 GHz; Intel Xeon E5-2650 v2 @ 2.60 GHz], cores: [8; 64; 80; 32], frequency: [3.6 GHz; 3.4 GHz; 2.5 GHz; 2.4 GHz; 2.6 GHz]; RAM: [16712 MB; 33644 MB; 16734 MB; 271006 MB; 1084131 MB; 1084266 MB; 1084265 MB; 948571 MB; 135150 MB] CPU: AMD Opteron 6380, cores: 64, frequency: 2.5 GHz; RAM: 271006 MB CPU: Intel Xeon E7- 4870 @ 2.40 GHz, cores: 80, frequency: 2.4 GHz; RAM: [1084265 MB; 1084131 MB; 1084266 MB; 948571 MB]
        +
        Date of execution + 2015-10-20 13:55:32 CEST 2015-10-22 11:13:44 CEST 2015-10-23 13:48:29 CEST
        +
        Run set + integration-predicateAnalysis integration-predicateAnalysis integration-predicateAnalysis
        +
        Options -
          -
        • - - -noout - -
        • -
        • - - -heap 2000M - -
        • -
        • - - -predicateAnalysis - -
        • -
        -
        -
          -
        • - - -noout - -
        • -
        • - - -heap 2000M - -
        • -
        • - - -predicateAnalysis - -
        • -
        -
        -
          -
        • - - -noout - -
        • -
        • - - -heap 2000M - -
        • -
        • - - -predicateAnalysis - -
        • -
        -
        - -
        -

        - Statistics -

        -
        -
        -
        -
        -
        -
        -
        -
        - -
        -
        -
        -
        + -noout + + +
      • -
        + + -heap 2000M + +
      • +
      • - - CPAchecker 2015-10-20 13:55:32 CEST integration-predicateAnalysis - -
        -
        -
        + -predicateAnalysis + +
      • + + + +
        +
          +
            -
            +
          • - - CPAchecker 2015-10-22 11:13:44 CEST integration-predicateAnalysis - -
            -
            -
            + -noout + +
          • +
          • -
            + + -heap 2000M + +
          • +
          • - - CPAchecker 2015-10-23 13:48:29 CEST integration-predicateAnalysis - -
            -
            -
          • -
            + -predicateAnalysis + + +
          +
        +
        +
          +
            -
            - - Click here to select columns - -
            -
            -
            + -noout + + +
          • - -
          • -
            + -heap 2000M + + +
          • -
            - status -
            -
            -
            + + -predicateAnalysis + +
          • +
          +
        +
        + + + +
        +
        - cputime -
        - (s) -
        -
        -
        -
        -
        - walltime -
        - (s) + > +
        +
        +
        +
        + status +
        +
        +
        +
        +
        + cputime +
        + (s) +
        +
        +
        +
        +
        + walltime +
        + (s) +
        +
        +
        +
        +
        + memory +
        + (MB) +
        +
        +
        +
        +
        + energy-core +
        +
        +
        +
        +
        + energy-cpu +
        +
        +
        +
        +
        + energy-external +
        +
        +
        +
        +
        + energy-uncore +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        + - +
        +
        +
        +
        + - +
        +
        +
        +
        + - +
        +
        +
        +
        + - +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        + - +
        +
        +
        +
        + - +
        +
        +
        +
        + - +
        +
        +
        +
        + - +
        +
        +
        +
        + - +
        +
        +
        +
        + - +
        +
        +
        +
        + - +
        +
        +
        +
        +
        +
        +
        +
        +
        + - +
        +
        +
        +
        + - +
        +
        +
        +
        + - +
        +
        +
        +
        + - +
        +
        +
        +
        + - +
        +
        +
        +
        + - +
        +
        +
        +
        + - +
        +
        +
        +
        +
        +
        +
        +
        +
        + - +
        +
        +
        +
        + - +
        +
        +
        +
        + - +
        +
        +
        +
        + - +
        +
        +
        +
        + - +
        +
        +
        +
        + - +
        +
        +
        +
        + - +
        +
        +
        +
        +
        -
        +
        +
        +
        +
        +
        - memory -
        - (MB) -
        -
        + > +
        +
        +
        +
        + status +
        +
        +
        +
        +
        + cputime +
        + (s) +
        +
        +
        +
        +
        + walltime +
        + (s) +
        +
        +
        +
        +
        + memory +
        + (MB) +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        + - +
        +
        +
        +
        + - +
        +
        +
        +
        + - +
        +
        +
        +
        +
        +
        +
        +
        +
        + - +
        +
        +
        +
        + - +
        +
        +
        +
        + - +
        +
        +
        +
        +
        +
        +
        +
        +
        + - +
        +
        +
        +
        + - +
        +
        +
        +
        + - +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        - energy-core -
        -
        -
        -
        -
        - energy-cpu -
        -
        -
        -
        -
        - energy-external -
        -
        -
        -
        -
        - energy-uncore -
        -
        -
        -
        - -
        -
        -
        - status -
        -
        -
        -
        -
        - cputime -
        - (s) -
        -
        -
        -
        -
        - walltime -
        - (s) -
        -
        -
        -
        -
        - memory -
        - (MB) -
        -
        -
        -
        - -
        -
        -
        - status -
        -
        -
        -
        -
        - cputime -
        - (s) -
        -
        -
        -
        -
        - walltime -
        - (s) -
        -
        -
        -
        -
        - memory -
        - (MB) -
        -
        + > +
        +
        +
        +
        + status +
        +
        +
        +
        +
        + cputime +
        + (s) +
        +
        +
        +
        +
        + walltime +
        + (s) +
        +
        +
        +
        +
        + memory +
        + (MB) +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        + - +
        +
        +
        +
        + - +
        +
        +
        +
        + - +
        +
        +
        +
        +
        +
        +
        +
        +
        + - +
        +
        +
        +
        + - +
        +
        +
        +
        + - +
        +
        +
        +
        +
        +
        +
        +
        +
        + - +
        +
        +
        +
        + - +
        +
        +
        +
        + - +
        +
        +
        +
        +
        +
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -

        - Generated by - - BenchExec (test) - -

        -
        -`; - -exports[`Render Summary for cbmc.2015-12-11_1211.results.Simple.html 1`] = ` -
        -
        -

        - Benchmark Setup -

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        - Tool - - - CBMC - -
        - Limits - - timelimit: 60 s, memlimit: 4000 MB, CPU core limit: 2 -
        - Host - - tortuga -
        - OS - - Linux 3.13.0-71-generic x86_64 -
        - System - - CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz, Turbo Boost: enabled; RAM: 16783 MB -
        - Date of execution - - 2015-12-11 12:11:02 CET -
        - Run set - - cbmc -
        - Properties - - unreach-call -
        -
        -
        -

        - Statistics -

        -
        -
        -
        -
        -
        -
        -
        -
        - -
        -
        -
        -
        -
        - - CBMC 2015-12-11 12:11:02 CET cbmc - -
        -
        -
        -
        -
        - - Click here to select columns - -
        -
        -
        - -
        -
        -
        - status -
        -
        -
        -
        -
        - cputime -
        - (s) -
        -
        -
        -
        -
        - walltime -
        - (s) -
        -
        -
        -
        -
        - memory -
        - (MB) -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -

        - Generated by - - BenchExec (test) - -

        -
        -`; - -exports[`Render Summary for multi-table.diff.html 1`] = ` -
        -
        -

        - Benchmark Setup -

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        - Tool - - - CPAchecker - - 1.4-svn 15944M - - - CPAchecker - - 1.4-svn 15986M -
        - Limits - - timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 -
        - Host - - tortuga -
        - OS - - Linux 3.13.0-45-generic x86_64 -
        - System - - CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB -
        - Date of execution - - 2015-03-03 16:13:02 CET - - 2015-03-03 18:15:20 CET -
        - Run set - - predicateAnalysis - - valueAnalysis - - predicateAnalysis - - valueAnalysis -
        - Options - -
          -
        • - - -noout - -
        • -
        • - - -setprop log.consoleLevel=WARNING - -
        • -
        • - - -predicateAnalysis - -
        • -
        -
        -
          -
        • - - -noout - -
        • -
        • - - -setprop log.consoleLevel=WARNING - -
        • -
        • - - -valueAnalysis - -
        • -
        -
        -
          -
        • - - -noout - -
        • -
        • - - -setprop log.consoleLevel=WARNING - -
        • -
        • - - -predicateAnalysis - -
        • -
        -
        -
          -
        • - - -noout - -
        • -
        • - - -setprop log.consoleLevel=WARNING - -
        • -
        • - - -valueAnalysis - -
        • -
        -
        -
        -
        -

        - Statistics -

        -
        -
        -
        -
        -
        -
        -
        -
        - -
        -
        -
        -
        -
        - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
        -
        -
        -
        - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
        -
        -
        -
        - - CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis - -
        -
        -
        -
        - - CPAchecker 2015-03-03 18:15:20 CET valueAnalysis - -
        -
        -
        -
        -
        - - Click here to select columns - -
        -
        -
        - -
        -
        -
        - status -
        -
        -
        -
        -
        - cputime -
        - (s) -
        -
        -
        -
        -
        - walltime -
        - (s) -
        -
        -
        -
        -
        - memory -
        - (MB) -
        -
        -
        -
        - -
        -
        -
        - status -
        -
        -
        -
        -
        - cputime -
        - (s) -
        -
        -
        -
        -
        - walltime -
        - (s) -
        -
        -
        -
        -
        - memory -
        - (MB) -
        -
        -
        -
        - -
        -
        -
        - status -
        -
        -
        -
        -
        - cputime -
        - (s) -
        -
        -
        -
        -
        - walltime -
        - (s) -
        -
        -
        -
        -
        - memory -
        - (MB) -
        -
        -
        -
        - -
        -
        -
        - status -
        -
        -
        -
        -
        - cputime -
        - (s) -
        -
        -
        -
        -
        - walltime -
        - (s) -
        -
        -
        -
        -
        - memory -
        - (MB) -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -

        - Generated by - - BenchExec (test) - -

        -
        -`; - -exports[`Render Summary for multi-table.table.html 1`] = ` -
        -
        -

        - Benchmark Setup -

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        - Tool - - - CPAchecker - - 1.4-svn 15944M - - - CPAchecker - - 1.4-svn 15986M -
        - Limits - - timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 -
        - Host - - tortuga -
        - OS - - Linux 3.13.0-45-generic x86_64 -
        - System - - CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB -
        - Date of execution - - 2015-03-03 16:13:02 CET - - 2015-03-03 18:15:20 CET -
        - Run set - - predicateAnalysis - - valueAnalysis - - predicateAnalysis - - valueAnalysis -
        - Options - -
          -
        • - - -noout - -
        • -
        • - - -setprop log.consoleLevel=WARNING - -
        • -
        • - - -predicateAnalysis - -
        • -
        -
        -
          -
        • - - -noout - -
        • -
        • - - -setprop log.consoleLevel=WARNING - -
        • -
        • - - -valueAnalysis - -
        • -
        -
        -
          -
        • - - -noout - -
        • -
        • - - -setprop log.consoleLevel=WARNING - -
        • -
        • - - -predicateAnalysis - -
        • -
        -
        -
          -
        • - - -noout - -
        • -
        • - - -setprop log.consoleLevel=WARNING - -
        • -
        • - - -valueAnalysis - -
        • -
        -
        -
        -
        -

        - Statistics -

        -
        -
        -
        -
        -
        -
        -
        -
        - -
        -
        -
        -
        -
        - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
        -
        -
        -
        - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
        -
        -
        -
        - - CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis - -
        -
        -
        -
        - - CPAchecker 2015-03-03 18:15:20 CET valueAnalysis - -
        -
        -
        -
        -
        - - Click here to select columns - -
        -
        -
        - -
        -
        -
        - status -
        -
        -
        -
        -
        - cputime -
        - (s) -
        -
        -
        -
        -
        - walltime -
        - (s) -
        -
        -
        -
        -
        - memory -
        - (MB) -
        -
        -
        -
        - -
        -
        -
        - status -
        -
        -
        -
        -
        - cputime -
        - (s) -
        -
        -
        -
        -
        - walltime -
        - (s) -
        -
        -
        -
        -
        - memory -
        - (MB) -
        -
        -
        -
        - -
        -
        -
        - status -
        -
        -
        -
        -
        - cputime -
        - (s) -
        -
        -
        -
        -
        - walltime -
        - (s) -
        -
        -
        -
        -
        - memory -
        - (MB) -
        -
        -
        -
        - -
        -
        -
        - status -
        -
        -
        -
        -
        - cputime -
        - (s) -
        -
        -
        -
        -
        - walltime -
        - (s) -
        -
        -
        -
        -
        - memory -
        - (MB) -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -

        - Generated by - - BenchExec (test) - -

        -
        -`; - -exports[`Render Summary for multi-table-only-columns.diff.html 1`] = ` -
        -
        -

        - Benchmark Setup -

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        - Tool - - - CPAchecker - - 1.4-svn 15944M - - - CPAchecker - - 1.4-svn 15986M -
        - Limits - - timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 -
        - Host - - tortuga -
        - OS - - Linux 3.13.0-45-generic x86_64 -
        - System - - CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB -
        - Date of execution - - 2015-03-03 16:13:02 CET - - 2015-03-03 18:15:20 CET -
        - Run set - - predicateAnalysis - - valueAnalysis - - predicateAnalysis - - valueAnalysis -
        - Options - -
          -
        • - - -noout - -
        • -
        • - - -setprop log.consoleLevel=WARNING - -
        • -
        • - - -predicateAnalysis - -
        • -
        -
        -
          -
        • - - -noout - -
        • -
        • - - -setprop log.consoleLevel=WARNING - -
        • -
        • - - -valueAnalysis - -
        • -
        -
        -
          -
        • - - -noout - -
        • -
        • - - -setprop log.consoleLevel=WARNING - -
        • -
        • - - -predicateAnalysis - -
        • -
        -
        -
          -
        • - - -noout - -
        • -
        • - - -setprop log.consoleLevel=WARNING - -
        • -
        • - - -valueAnalysis - -
        • -
        -
        -
        -
        -

        - Statistics -

        -
        -
        -
        -
        -
        -
        -
        -
        - -
        -
        -
        -
        -
        - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
        -
        -
        -
        - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
        -
        -
        -
        - - CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis - -
        -
        -
        -
        - - CPAchecker 2015-03-03 18:15:20 CET valueAnalysis - -
        -
        -
        -
        -
        - - Click here to select columns - -
        -
        -
        - -
        -
        -
        - status -
        -
        -
        -
        -
        - cputime -
        - (s) -
        -
        -
        -
        -
        - setup -
        - (s) -
        -
        -
        -
        -
        - SMT time -
        - (s) -
        -
        -
        -
        - -
        -
        -
        - status -
        -
        -
        -
        -
        - cputime -
        - (s) -
        -
        -
        -
        -
        - setup -
        - (s) -
        -
        -
        -
        -
        - variable count -
        -
        -
        -
        - -
        -
        -
        - status -
        -
        -
        -
        -
        - cputime -
        - (s) -
        -
        -
        -
        -
        - setup -
        - (s) -
        -
        -
        -
        -
        - SMT time -
        - (s) -
        -
        -
        -
        - -
        -
        -
        - status -
        -
        -
        -
        -
        - cputime -
        - (s) -
        -
        -
        -
        -
        - setup -
        - (s) -
        -
        -
        -
        -
        - variable count -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -

        - Generated by - - BenchExec (test) - -

        -
        -`; - -exports[`Render Summary for multi-table-only-columns.table.html 1`] = ` -
        -
        -

        - Benchmark Setup -

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        - Tool - - - CPAchecker - - 1.4-svn 15944M - - - CPAchecker - - 1.4-svn 15986M -
        - Limits - - timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 -
        - Host - - tortuga -
        - OS - - Linux 3.13.0-45-generic x86_64 -
        - System - - CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB -
        - Date of execution - - 2015-03-03 16:13:02 CET - - 2015-03-03 18:15:20 CET -
        - Run set - - predicateAnalysis - - valueAnalysis - - predicateAnalysis - - valueAnalysis -
        - Options - -
          -
        • - - -noout - -
        • -
        • - - -setprop log.consoleLevel=WARNING - -
        • -
        • - - -predicateAnalysis - -
        • -
        -
        -
          -
        • - - -noout - -
        • -
        • - - -setprop log.consoleLevel=WARNING - -
        • -
        • - - -valueAnalysis - -
        • -
        -
        -
          -
        • - - -noout - -
        • -
        • - - -setprop log.consoleLevel=WARNING - -
        • -
        • - - -predicateAnalysis - -
        • -
        -
        -
          -
        • - - -noout - -
        • -
        • - - -setprop log.consoleLevel=WARNING - -
        • -
        • - - -valueAnalysis - -
        • -
        -
        -
        -
        -

        - Statistics -

        -
        -
        -
        -
        -
        -
        -
        -
        - -
        -
        -
        -
        -
        - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
        -
        -
        -
        - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
        -
        -
        -
        - - CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis - -
        -
        -
        -
        - - CPAchecker 2015-03-03 18:15:20 CET valueAnalysis - -
        -
        -
        -
        -
        - - Click here to select columns - -
        -
        -
        - -
        -
        -
        - status -
        -
        -
        -
        -
        - cputime -
        - (s) -
        -
        -
        -
        -
        - setup -
        - (s) -
        -
        -
        -
        -
        - SMT time -
        - (s) -
        -
        -
        -
        - -
        -
        -
        - status -
        -
        -
        -
        -
        - cputime -
        - (s) -
        -
        -
        -
        -
        - setup -
        - (s) -
        -
        -
        -
        -
        - variable count -
        -
        -
        -
        - -
        -
        -
        - status -
        -
        -
        -
        -
        - cputime -
        - (s) -
        -
        -
        -
        -
        - setup -
        - (s) -
        -
        -
        -
        -
        - SMT time -
        - (s) -
        -
        -
        -
        - -
        -
        -
        - status -
        -
        -
        -
        -
        - cputime -
        - (s) -
        -
        -
        -
        -
        - setup -
        - (s) -
        -
        -
        -
        -
        - variable count -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -

        - Generated by - - BenchExec (test) - -

        -
        -`; - -exports[`Render Summary for multi-table-with-columns.diff.html 1`] = ` -
        -
        -

        - Benchmark Setup -

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        - Tool - - - CPAchecker - - 1.4-svn 15944M - - - CPAchecker - - 1.4-svn 15986M -
        - Limits - - timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 -
        - Host - - tortuga -
        - OS - - Linux 3.13.0-45-generic x86_64 -
        - System - - CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB -
        - Date of execution - - 2015-03-03 16:13:02 CET - - 2015-03-03 18:15:20 CET -
        - Run set - - predicateAnalysis - - valueAnalysis - - predicateAnalysis - - valueAnalysis -
        - Options - -
          -
        • - - -noout - -
        • -
        • - - -setprop log.consoleLevel=WARNING - -
        • -
        • - - -predicateAnalysis - -
        • -
        -
        -
          -
        • - - -noout - -
        • -
        • - - -setprop log.consoleLevel=WARNING - -
        • -
        • - - -valueAnalysis - -
        • -
        -
        -
          -
        • - - -noout - -
        • -
        • - - -setprop log.consoleLevel=WARNING - -
        • -
        • - - -predicateAnalysis - -
        • -
        -
        -
          -
        • - - -noout - -
        • -
        • - - -setprop log.consoleLevel=WARNING - -
        • -
        • - - -valueAnalysis - -
        • -
        -
        -
        -
        -

        - Statistics -

        -
        -
        -
        -
        -
        -
        -
        -
        - -
        -
        -
        -
        -
        - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
        -
        -
        -
        - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
        -
        -
        -
        - - CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis - -
        -
        -
        -
        - - CPAchecker 2015-03-03 18:15:20 CET valueAnalysis - -
        -
        -
        -
        -
        - - Click here to select columns - -
        -
        -
        - -
        -
        -
        - status -
        -
        -
        -
        -
        - cputime -
        - (s) -
        -
        -
        -
        -
        - setup -
        - (s) -
        -
        -
        -
        -
        - SMT time -
        - (s) -
        -
        -
        -
        - -
        -
        -
        - status -
        -
        -
        -
        -
        - cputime -
        - (s) -
        -
        -
        -
        -
        - setup -
        - (s) -
        -
        -
        -
        -
        - variable count -
        -
        -
        -
        - -
        -
        -
        - status -
        -
        -
        -
        -
        - cputime -
        - (s) -
        -
        -
        -
        -
        - analysis -
        - (s) -
        -
        -
        -
        -
        - SMT time -
        - (s) -
        -
        -
        -
        - -
        -
        -
        - status -
        -
        -
        -
        -
        - cputime -
        - (s) -
        -
        -
        -
        -
        - analysis -
        - (s) -
        -
        -
        -
        -
        - variable count -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -

        - Generated by - - BenchExec (test) - -

        -
        -`; - -exports[`Render Summary for multi-table-with-columns.table.html 1`] = ` -
        -
        -

        - Benchmark Setup -

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        - Tool - - - CPAchecker - - 1.4-svn 15944M - - - CPAchecker - - 1.4-svn 15986M -
        - Limits - - timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 -
        - Host - - tortuga -
        - OS - - Linux 3.13.0-45-generic x86_64 -
        - System - - CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB -
        - Date of execution - - 2015-03-03 16:13:02 CET - - 2015-03-03 18:15:20 CET -
        - Run set - - predicateAnalysis - - valueAnalysis - - predicateAnalysis - - valueAnalysis -
        - Options - -
          -
        • - - -noout - -
        • -
        • - - -setprop log.consoleLevel=WARNING - -
        • -
        • - - -predicateAnalysis - -
        • -
        -
        -
          -
        • - - -noout - -
        • -
        • - - -setprop log.consoleLevel=WARNING - -
        • -
        • - - -valueAnalysis - -
        • -
        -
        -
          -
        • - - -noout - -
        • -
        • - - -setprop log.consoleLevel=WARNING - -
        • -
        • - - -predicateAnalysis - -
        • -
        -
        -
          -
        • - - -noout - -
        • -
        • - - -setprop log.consoleLevel=WARNING - -
        • -
        • - - -valueAnalysis - -
        • -
        -
        -
        -
        -

        - Statistics -

        -
        -
        -
        -
        -
        -
        -
        -
        - -
        -
        -
        -
        -
        - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
        -
        -
        -
        - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
        -
        -
        -
        - - CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis - -
        -
        -
        -
        - - CPAchecker 2015-03-03 18:15:20 CET valueAnalysis - -
        -
        -
        -
        -
        - - Click here to select columns - -
        -
        -
        - -
        -
        -
        - status -
        -
        -
        -
        -
        - cputime -
        - (s) -
        -
        -
        -
        -
        - setup -
        - (s) -
        -
        -
        -
        -
        - SMT time -
        - (s) -
        -
        -
        -
        - -
        -
        -
        - status -
        -
        -
        -
        -
        - cputime -
        - (s) -
        -
        -
        -
        -
        - setup -
        - (s) -
        -
        -
        -
        -
        - variable count -
        -
        -
        -
        - -
        -
        -
        - status -
        -
        -
        -
        -
        - cputime -
        - (s) -
        -
        -
        -
        -
        - analysis -
        - (s) -
        -
        -
        -
        -
        - SMT time -
        - (s) -
        -
        -
        -
        - -
        -
        -
        - status -
        -
        -
        -
        -
        - cputime -
        - (s) -
        -
        -
        -
        -
        - analysis -
        - (s) -
        -
        -
        -
        -
        - variable count -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -

        - Generated by - - BenchExec (test) - -

        -
        -`; - -exports[`Render Summary for multi-table-with-diff-over-column.diff.html 1`] = ` -
        -
        -

        - Benchmark Setup -

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        - Tool - - - CPAchecker - - 1.4-svn 15944M - - - CPAchecker - - 1.4-svn 15986M -
        - Limits - - timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 -
        - Host - - tortuga -
        - OS - - Linux 3.13.0-45-generic x86_64 -
        - System - - CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB -
        - Date of execution - - 2015-03-03 16:13:02 CET - - 2015-03-03 18:15:20 CET -
        - Run set - - predicateAnalysis - - valueAnalysis - - predicateAnalysis - - valueAnalysis -
        - Options - -
          -
        • - - -noout - -
        • -
        • - - -setprop log.consoleLevel=WARNING - -
        • -
        • - - -predicateAnalysis - -
        • -
        -
        -
          -
        • - - -noout - -
        • -
        • - - -setprop log.consoleLevel=WARNING - -
        • -
        • - - -valueAnalysis - -
        • -
        -
        -
          -
        • - - -noout - -
        • -
        • - - -setprop log.consoleLevel=WARNING - -
        • -
        • - - -predicateAnalysis - -
        • -
        -
        -
          -
        • - - -noout - -
        • -
        • - - -setprop log.consoleLevel=WARNING - -
        • -
        • - - -valueAnalysis - -
        • -
        -
        -
        -
        -

        - Statistics -

        -
        -
        -
        -
        -
        -
        -
        -
        - -
        -
        -
        -
        -
        - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
        -
        -
        -
        - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
        -
        -
        -
        - - CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis - -
        -
        -
        -
        - - CPAchecker 2015-03-03 18:15:20 CET valueAnalysis - -
        -
        -
        -
        -
        - - Click here to select columns - -
        -
        -
        - -
        -
        -
        - status -
        -
        -
        -
        -
        - cputime -
        - (s) -
        -
        -
        -
        -
        - setup -
        - (s) -
        -
        -
        -
        -
        - SMT time -
        - (s) -
        -
        -
        -
        - -
        -
        -
        - status -
        -
        -
        -
        -
        - cputime -
        - (s) -
        -
        -
        -
        -
        - setup -
        - (s) -
        -
        -
        -
        -
        - variable count -
        -
        -
        -
        - -
        -
        -
        - status -
        -
        -
        -
        -
        - cputime -
        - (s) -
        -
        -
        -
        -
        - setup -
        - (s) -
        -
        -
        -
        -
        - SMT time -
        - (s) -
        -
        -
        -
        - -
        -
        -
        - status -
        -
        -
        -
        -
        - cputime -
        - (s) -
        -
        -
        -
        -
        - setup -
        - (s) -
        -
        -
        -
        -
        - variable count -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -

        - Generated by - - BenchExec (test) - -

        -
        -`; - -exports[`Render Summary for multi-table-with-diff-over-column.table.html 1`] = ` -
        -
        -

        - Benchmark Setup -

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        - Tool - - - CPAchecker - - 1.4-svn 15944M - - - CPAchecker - - 1.4-svn 15986M -
        - Limits - - timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 -
        - Host - - tortuga -
        - OS - - Linux 3.13.0-45-generic x86_64 -
        - System - - CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB -
        - Date of execution - - 2015-03-03 16:13:02 CET - - 2015-03-03 18:15:20 CET -
        - Run set - - predicateAnalysis - - valueAnalysis - - predicateAnalysis - - valueAnalysis -
        - Options - -
          -
        • - - -noout - -
        • -
        • - - -setprop log.consoleLevel=WARNING - -
        • -
        • - - -predicateAnalysis - -
        • -
        -
        -
          -
        • - - -noout - -
        • -
        • - - -setprop log.consoleLevel=WARNING - -
        • -
        • - - -valueAnalysis - -
        • -
        -
        -
          -
        • - - -noout - -
        • -
        • - - -setprop log.consoleLevel=WARNING - -
        • -
        • - - -predicateAnalysis - -
        • -
        -
        -
          -
        • - - -noout - -
        • -
        • - - -setprop log.consoleLevel=WARNING - -
        • -
        • - - -valueAnalysis - -
        • -
        -
        -
        -
        -

        - Statistics -

        -
        -
        -
        -
        -
        -
        -
        -
        - -
        -
        -
        -
        -
        - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
        -
        -
        -
        - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
        -
        -
        -
        - - CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis - -
        -
        -
        -
        - - CPAchecker 2015-03-03 18:15:20 CET valueAnalysis - -
        -
        -
        -
        -
        - - Click here to select columns - -
        -
        -
        - -
        -
        -
        - status -
        -
        -
        -
        -
        - cputime -
        - (s) -
        -
        -
        -
        -
        - setup -
        - (s) -
        -
        -
        -
        -
        - SMT time -
        - (s) -
        -
        -
        -
        - -
        -
        -
        - status -
        -
        -
        -
        -
        - cputime -
        - (s) -
        -
        -
        -
        -
        - setup -
        - (s) -
        -
        -
        -
        -
        - variable count -
        -
        -
        -
        - -
        -
        -
        - status -
        -
        -
        -
        -
        - cputime -
        - (s) -
        -
        -
        -
        -
        - setup -
        - (s) -
        -
        -
        -
        -
        - SMT time -
        - (s) -
        -
        -
        -
        - -
        -
        -
        - status -
        -
        -
        -
        -
        - cputime -
        - (s) -
        -
        -
        -
        -
        - setup -
        - (s) -
        -
        -
        -
        -
        - variable count -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        - - -
        -
        +
        + all results + +
        + correct results + +
        + correct true + +
        + correct false + +
        + incorrect results + +
        + incorrect true + +
        + incorrect false + +
        +
        +

        + Generated by + + BenchExec (test) + +

        +
        +`; + +exports[`Render Summary for cbmc.2015-12-11_1211.results.Simple.html 1`] = ` +
        +

        + Benchmark Setup +

        +
        +
        + + +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        + Tool + + + + CBMC + +
        + Limits + + + timelimit: 60 s, memlimit: 4000 MB, CPU core limit: 2 +
        + Host + + + tortuga +
        + OS + + + Linux 3.13.0-71-generic x86_64 +
        + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz, Turbo Boost: enabled; RAM: 16783 MB +
        + Date of execution + + + 2015-12-11 12:11:02 CET +
        + Run set + + + cbmc +
        + Properties + + + unreach-call +
        + + + +
        +
        - - +
        +
        +
        +
        +
        + status +
        +
        +
        +
        +
        + cputime +
        + (s) +
        +
        +
        +
        +
        + walltime +
        + (s) +
        +
        +
        +
        +
        + memory +
        + (MB) +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        + - +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        + - +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        + - +
        +
        +
        +
        + - +
        +
        +
        +
        + - +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        + - +
        +
        +
        +
        + - +
        +
        +
        +
        + - +
        +
        +
        +
        +
        +
        +
        +
        +
        + - +
        +
        +
        +
        + - +
        +
        +
        +
        + - +
        +
        +
        +
        +
        +
        +
        +
        +
        + - +
        +
        +
        +
        + - +
        +
        +
        +
        + - +
        +
        +
        +
        +
        +
        +
        + all results + +
        + local summary + +
        + correct results + +
        + correct true + +
        + correct false + +
        + incorrect results + +
        + incorrect true + +
        + incorrect false + +
        +
        +

        + Generated by + + BenchExec (test) + +

        +
        +`; + +exports[`Render Summary for multi-table.diff.html 1`] = ` +
        +
        +

        + Benchmark Setup +

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        + Tool + + + CPAchecker + + 1.4-svn 15944M + + + CPAchecker + + 1.4-svn 15986M +
        + Limits + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
        + Host + + tortuga +
        + OS + + Linux 3.13.0-45-generic x86_64 +
        + System + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
        + Date of execution + + 2015-03-03 16:13:02 CET + + 2015-03-03 18:15:20 CET +
        + Run set + + predicateAnalysis + + valueAnalysis + + predicateAnalysis + + valueAnalysis +
        + Options + +
          +
        • + + -noout + +
        • +
        • + + -setprop log.consoleLevel=WARNING + +
        • +
        • + + -predicateAnalysis + +
        • +
        +
        +
          +
        • + + -noout + +
        • +
        • + + -setprop log.consoleLevel=WARNING + +
        • +
        • + + -valueAnalysis + +
        • +
        +
        +
          +
        • + + -noout + +
        • +
        • + + -setprop log.consoleLevel=WARNING + +
        • +
        • + + -predicateAnalysis + +
        • +
        +
        +
          +
        • + + -noout + +
        • +
        • + + -setprop log.consoleLevel=WARNING + +
        • +
        • + + -valueAnalysis + +
        • +
        +
        +
        +
        +

        + Statistics +

        +
        +
        +
        +
        +
        +
        + +
        -
        -
        -
        -
        -
        -
        + + CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis +
        -
        -
        -
        + + CPAchecker 2015-03-03 16:13:02 CET valueAnalysis +
        -
        -
        -
        -
        -
        + />
        + + CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis +
        + + CPAchecker 2015-03-03 18:15:20 CET valueAnalysis +
        -
        -
        -
        -
        +
        -
        -
        + } + >
        + + Click here to select columns +
        + > + +
        + status +
        +
        + cputime +
        + (s) +
        +
        + walltime +
        + (s) +
        +
        -
        -
        -
        -
        + className="header-data clickable" + title="Show Quantile Plot of this column" + > + memory +
        + (MB) +
        + > + +
        + status +
        +
        + cputime +
        + (s) +
        +
        + walltime +
        + (s) +
        +
        + memory +
        + (MB) +
        +
        + > + +
        + status +
        +
        - - + cputime +
        + (s)
        +
        - - + walltime +
        + (s)
        +
        - - + memory +
        + (MB)
        +
        + > + +
        + status +
        +
        + cputime +
        + (s) +
        +
        + walltime +
        + (s) +
        +
        +
        +
        +
        + memory +
        + (MB) +
        +
        +
        +
        +
        +
        - - -
        + dangerouslySetInnerHTML={"6.46"} + title="avg: 2.15, max: 2.23, median: 2.17, min: 2.06, stdev: 0.0708" + />
        - - -
        + dangerouslySetInnerHTML={"6.48"} + title="avg: 2.16, max: 2.24, median: 2.18, min: 2.07, stdev: 0.0708" + />
        - - -
        -
        -
        -
        -
        -
        +
        +
        +
        +
        +
        -
        -
        -
        -
        -
        - - -
        + dangerouslySetInnerHTML={"3.80"} + title="avg: 1.90, max: 1.95, median: 1.90, min: 1.85, stdev: 0.0493" + />
        - - -
        + dangerouslySetInnerHTML={"3.82"} + title="avg: 1.91, max: 1.96, median: 1.91, min: 1.86, stdev: 0.0493" + />
        - - -
        + dangerouslySetInnerHTML={"258"} + title="avg: 129, max: 130, median: 129, min: 129, stdev: 0.635" + />
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        @@ -36527,9 +8524,9 @@ exports[`Render Summary for multi-table-with-diff-over-column.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "132 0 auto", + "flex": "68 0 auto", "minWidth": "30px", - "width": "132px", + "width": "68px", } } > @@ -36565,7 +8562,7 @@ exports[`Render Summary for multi-table-with-diff-over-column.table.html 1`] = ` >
        @@ -36693,9 +8690,9 @@ exports[`Render Summary for multi-table-with-diff-over-column.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "132 0 auto", + "flex": "68 0 auto", "minWidth": "30px", - "width": "132px", + "width": "68px", } } > @@ -36736,8 +8733,8 @@ exports[`Render Summary for multi-table-with-diff-over-column.table.html 1`] = ` >
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        - - -
        + dangerouslySetInnerHTML={"2.12"} + title="avg: 2.12, max: 2.12, median: 2.12, min: 2.12, stdev: 0.000" + />
        - - -
        + dangerouslySetInnerHTML={"2.13"} + title="avg: 2.13, max: 2.13, median: 2.13, min: 2.13, stdev: 0.000" + />
        - - -
        + dangerouslySetInnerHTML={"134"} + title="avg: 134, max: 134, median: 134, min: 134, stdev: 0.000" + />
        @@ -37060,9 +8974,9 @@ exports[`Render Summary for multi-table-with-diff-over-column.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "132 0 auto", + "flex": "68 0 auto", "minWidth": "30px", - "width": "132px", + "width": "68px", } } > @@ -37072,573 +8986,92 @@ exports[`Render Summary for multi-table-with-diff-over-column.table.html 1`] = ` -
        -
        -
        -
        -
        -
        -
        -
        -

        - Generated by - - BenchExec (test) - -

        -
        -`; - -exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` -
        -
        -

        - Benchmark Setup -

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        - Tool - - - CPAchecker - - 1.4-svn 15944M - - - CPAchecker - - 1.4-svn 15986M - - - CPAchecker - - 1.4-svn 15944M - - - CPAchecker - - 1.4-svn 15986M -
        - Limits - - timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 -
        - Host - - tortuga -
        - OS - - Linux 3.13.0-45-generic x86_64 -
        - System - - CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB -
        - Date of execution - - 2015-03-03 16:13:02 CET - - 2015-03-03 18:15:20 CET - - 2015-03-03 16:13:02 CET - - 2015-03-03 18:15:20 CET -
        - Run set - - predicateAnalysis - - predicateAnalysis - - valueAnalysis - - valueAnalysis -
        - Options - -
          -
        • - - -noout - -
        • -
        • - - -setprop log.consoleLevel=WARNING - -
        • -
        • - - -predicateAnalysis - -
        • -
        -
        -
          -
        • - - -noout - -
        • -
        • - - -setprop log.consoleLevel=WARNING - -
        • -
        • - - -predicateAnalysis - -
        • -
        -
        -
          -
        • - - -noout - -
        • -
        • - - -setprop log.consoleLevel=WARNING - -
        • -
        • - - -valueAnalysis - -
        • -
        -
        -
          -
        • - - -noout - -
        • -
        • - - -setprop log.consoleLevel=WARNING - -
        • -
        • - - -valueAnalysis - -
        • -
        -
        -
        -
        -

        - Statistics -

        -
        -
        -
        -
        -
        -
        -
        -
        - -
        -
        -
        -
        -
        - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
        -
        - - CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis -
        -
        - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis -
        + > +
        +
        - - CPAchecker 2015-03-03 18:15:20 CET valueAnalysis -
        - - Click here to select columns -
        - -
        + />
        - status -
        -
        - cputime -
        - (s) -
        -
        - walltime -
        - (s) -
        -
        - memory -
        - (MB) -
        -
        - -
        + />
        - status -
        -
        - cputime -
        - (s) + -
        -
        - walltime -
        - (s) + -
        -
        - memory -
        - (MB) + -
        -
        - -
        + />
        - status -
        -
        - cputime -
        - (s) -
        -
        - walltime -
        - (s) -
        -
        - memory -
        - (MB) -
        -
        - -
        + />
        - status -
        -
        - cputime -
        - (s) + -
        -
        - walltime -
        - (s) + -
        -
        - memory -
        - (MB) + -
        -
        -
        -
        + > + - +
        + > + - +
        + > + - +
        + > + - +
        + > + - +
        + > + - +
        + > + - +
        + > + - +
        + > + - +
        + > + - +
        + > + - +
        + > + - +
        + > + - +
        + > + - +
        + > + - +
        + > + - +
        + > + - +
        + > + - +
        +
        +
        +
        +
        +
        +
        +

        + Generated by + + BenchExec (test) + +

        +
        +`; + +exports[`Render Summary for multi-table.table.html 1`] = ` +
        +
        +

        + Benchmark Setup +

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        + Tool + + + CPAchecker + + 1.4-svn 15944M + + + CPAchecker + + 1.4-svn 15986M +
        + Limits + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
        + Host + + tortuga +
        + OS + + Linux 3.13.0-45-generic x86_64 +
        + System + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
        + Date of execution + + 2015-03-03 16:13:02 CET + + 2015-03-03 18:15:20 CET +
        + Run set + + predicateAnalysis + + valueAnalysis + + predicateAnalysis + + valueAnalysis +
        + Options + +
          +
        • + + -noout + +
        • +
        • + + -setprop log.consoleLevel=WARNING + +
        • +
        • + + -predicateAnalysis + +
        • +
        +
        +
          +
        • + + -noout + +
        • +
        • + + -setprop log.consoleLevel=WARNING + +
        • +
        • + + -valueAnalysis + +
        • +
        +
        +
          +
        • + + -noout + +
        • +
        • + + -setprop log.consoleLevel=WARNING + +
        • +
        • + + -predicateAnalysis + +
        • +
        +
        +
          +
        • + + -noout + +
        • +
        • + + -setprop log.consoleLevel=WARNING + +
        • +
        • + + -valueAnalysis + +
        • +
        +
        +
        +
        +

        + Statistics +

        +
        +
        +
        +
        +
        +
        + +
        -
        -
        -
        -
        -
        -
        + + CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis +
        -
        -
        -
        -
        -
        -
        -
        -
        -
        + + CPAchecker 2015-03-03 16:13:02 CET valueAnalysis +
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        + CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis +
        - - -
        -
        -
        -
        - - -
        + />
        -
        -
        -
        -
        - - -
        -
        -
        + CPAchecker 2015-03-03 18:15:20 CET valueAnalysis +
        - - -
        -
        -
        -
        - - -
        + />
        + + Click here to select columns +
        + > + +
        + status +
        +
        - - + cputime +
        + (s)
        +
        - - + walltime +
        + (s)
        +
        - - + memory +
        + (MB)
        +
        + > + +
        + status +
        +
        - - + cputime +
        + (s)
        +
        - - + walltime +
        + (s)
        +
        - - + memory +
        + (MB)
        +
        + > + +
        + status +
        +
        + cputime +
        + (s) +
        +
        + walltime +
        + (s) +
        +
        + memory +
        + (MB) +
        +
        + > + +
        + status +
        +
        + cputime +
        + (s) +
        +
        + walltime +
        + (s) +
        +
        + memory +
        + (MB) +
        +
        +
        +
        - - -
        + dangerouslySetInnerHTML={"9.39"} + title="avg: 1.88, max: 1.95, median: 1.86, min: 1.83, stdev: 0.0426" + />
        - - -
        + dangerouslySetInnerHTML={"9.43"} + title="avg: 1.89, max: 1.96, median: 1.87, min: 1.84, stdev: 0.0431" + />
        - - -
        + dangerouslySetInnerHTML={"648"} + title="avg: 130, max: 131, median: 130, min: 129, stdev: 0.671" + />
        - - -
        + dangerouslySetInnerHTML={"7.20"} + title="avg: 1.80, max: 1.82, median: 1.81, min: 1.75, stdev: 0.0300" + />
        - - -
        + dangerouslySetInnerHTML={"7.23"} + title="avg: 1.81, max: 1.83, median: 1.82, min: 1.76, stdev: 0.0300" + />
        - - -
        + dangerouslySetInnerHTML={"516"} + title="avg: 129, max: 131, median: 131, min: 123, stdev: 3.51" + />
        + > + - +
        + > + - +
        + > + - +
        + > + - +
        + > + - +
        - - -
        + dangerouslySetInnerHTML={"9.40"} + />
        - - -
        + dangerouslySetInnerHTML={"10.1 "} + />
        + > + - +
        - - -
        + dangerouslySetInnerHTML={"7.21"} + />
        - - -
        + dangerouslySetInnerHTML={"7.81"} + />
        - - -
        + dangerouslySetInnerHTML={"6.48"} + title="avg: 2.16, max: 2.23, median: 2.19, min: 2.06, stdev: 0.0730" + />
        - - -
        + dangerouslySetInnerHTML={"6.50"} + title="avg: 2.17, max: 2.24, median: 2.20, min: 2.07, stdev: 0.0728" + />
        - - -
        + dangerouslySetInnerHTML={"388"} + title="avg: 129, max: 132, median: 129, min: 126, stdev: 2.46" + />
        - - -
        + dangerouslySetInnerHTML={"4.28"} + title="avg: 2.14, max: 2.16, median: 2.14, min: 2.12, stdev: 0.0211" + />
        - - -
        + dangerouslySetInnerHTML={"4.30"} + title="avg: 2.15, max: 2.17, median: 2.15, min: 2.13, stdev: 0.0204" + />
        - - -
        + dangerouslySetInnerHTML={"265"} + title="avg: 132, max: 134, median: 132, min: 131, stdev: 1.23" + />
        - - -
        + dangerouslySetInnerHTML={"5.63"} + title="avg: 1.88, max: 1.95, median: 1.85, min: 1.83, stdev: 0.0523" + />
        - - -
        + dangerouslySetInnerHTML={"5.65"} + title="avg: 1.88, max: 1.96, median: 1.86, min: 1.84, stdev: 0.0530" + />
        - - -
        + dangerouslySetInnerHTML={"388"} + title="avg: 129, max: 130, median: 130, min: 129, stdev: 0.640" + />
        - - -
        + dangerouslySetInnerHTML={"3.64"} + title="avg: 1.82, max: 1.82, median: 1.82, min: 1.82, stdev: 0.00252" + />
        - - -
        + dangerouslySetInnerHTML={"3.65"} + title="avg: 1.83, max: 1.83, median: 1.83, min: 1.82, stdev: 0.00251" + />
        - - -
        + dangerouslySetInnerHTML={"262"} + title="avg: 131, max: 131, median: 131, min: 131, stdev: 0.0328" + />
        -
        -
        -
        -
        -
        -
        -

        - Generated by - - BenchExec (test) - -

        -
        -`; - -exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` -
        -
        -

        - Benchmark Setup -

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        - Tool - - - CPAchecker - - 1.4-svn 15944M - - - CPAchecker - - 1.4-svn 15986M - - - CPAchecker - - 1.4-svn 15944M - - - CPAchecker - - 1.4-svn 15986M -
        - Limits - - timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 -
        - Host - - tortuga -
        - OS - - Linux 3.13.0-45-generic x86_64 -
        - System - - CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB -
        - Date of execution - - 2015-03-03 16:13:02 CET - - 2015-03-03 18:15:20 CET - - 2015-03-03 16:13:02 CET - - 2015-03-03 18:15:20 CET -
        - Run set - - predicateAnalysis - - predicateAnalysis - - valueAnalysis - - valueAnalysis -
        - Options - -
          -
        • - - -noout - -
        • -
        • - - -setprop log.consoleLevel=WARNING - -
        • -
        • - - -predicateAnalysis - -
        • -
        -
        -
          -
        • - - -noout - -
        • -
        • - - -setprop log.consoleLevel=WARNING - -
        • -
        • - - -predicateAnalysis - -
        • -
        -
        -
          -
        • - - -noout - -
        • -
        • - - -setprop log.consoleLevel=WARNING - -
        • -
        • - - -valueAnalysis - -
        • -
        -
        -
          -
        • - - -noout - -
        • -
        • - - -setprop log.consoleLevel=WARNING - -
        • -
        • - - -valueAnalysis - -
        • -
        -
        -
        -
        -

        - Statistics -

        -
        -
        -
        -
        -
        + } + > +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        -
        - -
        - +
        +
        +
        - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - + - +
        +
        +
        + - +
        +
        +
        + } + > +
        + - +
        - - CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis -
        + > +
        +
        - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis -
        +
        +
        +
        - +
        +
        +
        - CPAchecker 2015-03-03 18:15:20 CET valueAnalysis - + - +
        +
        +
        + - +
        +
        +
        + } + > +
        + - +
        - - Click here to select columns -
        - -
        + />
        - status -
        -
        - cputime -
        - (s) -
        -
        - walltime -
        - (s) -
        -
        - memory -
        - (MB) -
        -
        - -
        + />
        - status -
        -
        -
        - cputime -
        - (s) -
        -
        +
        - walltime -
        - (s) -
        -
        - memory -
        - (MB) -
        -
        - -
        + />
        - status -
        -
        - cputime -
        - (s) -
        -
        - walltime -
        - (s) -
        -
        - memory -
        - (MB) -
        -
        - -
        + />
        - status -
        -
        - cputime -
        - (s) -
        -
        - walltime -
        - (s) -
        -
        - memory -
        - (MB) -
        -
        -
        -
        + > + - +
        + > + - +
        + > + - +
        + > + - +
        + > + - +
        + > + - +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        + - +
        +
        +
        +
        + - +
        +
        +
        + className="cell" + > + - +
        - - -
        + dangerouslySetInnerHTML={1} + />
        - - -
        + dangerouslySetInnerHTML={"131"} + title="avg: 131, max: 131, median: 131, min: 131, stdev: 0.000" + />
        - - -
        + dangerouslySetInnerHTML={0} + />
        + > + - +
        + > + - +
        +
        +
        +
        +
        +
        - - -
        + dangerouslySetInnerHTML={0} + />
        + > + - +
        + > + - +
        - - -
        + dangerouslySetInnerHTML={0} + />
        + > + - +
        + > + - +
        -
        -
        -
        -
        -
        + > + - +
        + > + - +
        + > + - +
        + > + - +
        -
        -
        + > +
        + - +
        +
        +
        +
        + - +
        +
        +
        +
        +
        +
        +
        +
        +
        +

        + Generated by + + BenchExec (test) + +

        +
        +`; + +exports[`Render Summary for multi-table-only-columns.diff.html 1`] = ` +
        +
        +

        + Benchmark Setup +

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        + Tool + + + CPAchecker + + 1.4-svn 15944M + + + CPAchecker + + 1.4-svn 15986M +
        + Limits + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
        + Host + + tortuga +
        + OS + + Linux 3.13.0-45-generic x86_64 +
        + System + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
        + Date of execution + + 2015-03-03 16:13:02 CET + + 2015-03-03 18:15:20 CET +
        + Run set + + predicateAnalysis + + valueAnalysis + + predicateAnalysis + + valueAnalysis +
        + Options + +
          +
        • + + -noout + +
        • +
        • + + -setprop log.consoleLevel=WARNING + +
        • +
        • + + -predicateAnalysis + +
        • +
        +
        +
          +
        • + + -noout + +
        • +
        • + + -setprop log.consoleLevel=WARNING + +
        • +
        • + + -valueAnalysis + +
        • +
        +
        +
          +
        • + + -noout + +
        • +
        • + + -setprop log.consoleLevel=WARNING + +
        • +
        • + + -predicateAnalysis + +
        • +
        +
        +
          +
        • + + -noout + +
        • +
        • + + -setprop log.consoleLevel=WARNING + +
        • +
        • + + -valueAnalysis + +
        • +
        +
        +
        +
        +

        + Statistics +

        +
        +
        +
        +
        +
        +
        +
        + +
        + + CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis +
        -
        -
        -
        -
        -
        + />
        + + CPAchecker 2015-03-03 16:13:02 CET valueAnalysis +
        + + CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis +
        -
        -
        -
        -
        -
        + />
        + + CPAchecker 2015-03-03 18:15:20 CET valueAnalysis +
        + + Click here to select columns +
        + > + +
        + status +
        +
        + cputime +
        + (s) +
        +
        + setup +
        + (s) +
        +
        + SMT time +
        + (s) +
        +
        + > + +
        + status +
        +
        + cputime +
        + (s) +
        +
        + setup +
        + (s) +
        +
        + variable count +
        +
        -
        + +
        +
        + status +
        +
        - - + cputime +
        + (s)
        +
        - - + setup +
        + (s)
        +
        - - + SMT time +
        + (s)
        +
        + > + +
        + status +
        +
        - - + cputime +
        + (s)
        +
        - - + setup +
        + (s)
        +
        - - + variable count
        +
        +
        +
        @@ -43901,8 +15818,8 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` >
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        - - -
        + dangerouslySetInnerHTML={"1.41"} + title="avg: 1.41, max: 1.41, median: 1.41, min: 1.41, stdev: 0.000" + />
        -
        -
        +
        +
        +
        +
        +
        - - -
        + dangerouslySetInnerHTML={"4.29"} + title="avg: 2.14, max: 2.23, median: 2.14, min: 2.06, stdev: 0.0854" + />
        - - -
        + dangerouslySetInnerHTML={"3.16"} + title="avg: 1.58, max: 1.67, median: 1.58, min: 1.49, stdev: 0.0860" + />
        - - -
        + dangerouslySetInnerHTML={".029"} + title="avg: 0.0145, max: 0.018, median: 0.0145, min: 0.011, stdev: 0.00350" + />
        @@ -44592,9 +16343,9 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "68 0 auto", + "flex": "132 0 auto", "minWidth": "30px", - "width": "68px", + "width": "132px", } } > @@ -44604,41 +16355,6 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` -
        -
        -
        -
        -
        -
        - - -
        + dangerouslySetInnerHTML={"3.80"} + title="avg: 1.90, max: 1.95, median: 1.90, min: 1.85, stdev: 0.0493" + />
        - - -
        + dangerouslySetInnerHTML={"2.84"} + title="avg: 1.42, max: 1.47, median: 1.42, min: 1.37, stdev: 0.0460" + />
        - - -
        + dangerouslySetInnerHTML={".021"} + title="avg: 0.0105, max: 0.015, median: 0.0105, min: 0.006, stdev: 0.00450" + />
        @@ -44793,9 +16509,9 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "68 0 auto", + "flex": "132 0 auto", "minWidth": "30px", - "width": "68px", + "width": "132px", } } > @@ -44805,6 +16521,41 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` -
        +
        +
        +
        +
        +
        @@ -44876,9 +16627,9 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "68 0 auto", + "flex": "84 0 auto", "minWidth": "30px", - "width": "68px", + "width": "84px", } } > @@ -44914,7 +16665,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` >
        - - -
        -
        -
        -
        - - -
        + dangerouslySetInnerHTML={"2.12"} + title="avg: 2.12, max: 2.12, median: 2.12, min: 2.12, stdev: 0.000" + />
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -

        - Generated by - - BenchExec (test) - -

        -
        -`; - -exports[`Render Summary for nan_and_inf.html 1`] = ` -
        -
        -

        - Benchmark Setup -

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        - Tool - - - CPAchecker - - 1.7-svn 28500M -
        - Limits - - timelimit: 900 s, memlimit: 15000 MB, CPU core limit: 2 -
        - Host - - apollon* -
        - OS - - Linux 4.4.0-128-generic -
        - System - - CPU: Intel Xeon E3-1230 v5 @ 3.40 GHz, cores: 8, frequency: 3.8 GHz, Turbo Boost: disabled; RAM: 33553 MB -
        - Date of execution - - 2018-06-27 14:40:12 CEST -
        - Run set - - Model-Based-Selection -
        - Options - -
          -
        • - - -heap 10000M - -
        • -
        • - - -benchmark - -
        • -
        • - - -configselection-heuristic - -
        • -
        -
        - Properties - - unreach-call -
        -
        -
        -

        - Statistics -

        -
        -
        -
        -
        -
        -
        + } + > +
        +
        -
        - -
        - - CPAchecker 2018-06-27 14:40:12 CEST Model-Based-Selection -
        -
        -
        - - Click here to select columns - + - +
        +
        +
        + - +
        +
        +
        + } + > +
        + - +
        - -
        + />
        - status -
        -
        - cputime -
        - (s) -
        -
        - walltime -
        - (s) -
        -
        - memory -
        - (MB) -
        -
        +
        +
        - Aliasing -
        -
        +
        - Arrays -
        -
        - Boolean -
        -
        - Composite types -
        + className="cell" + dangerouslySetInnerHTML={"1.62"} + title="avg: 1.62, max: 1.62, median: 1.62, min: 1.62, stdev: 0.000" + /> +
        +
        +
        +
        +
        +
        - Floats + -
        -
        - Loops + -
        -
        -
        -
        -
        -
        + className="cell" + > + - +
        -
        -
        + />
        -
        -
        -
        + > + - +
        + > + - +
        + > + - +
        @@ -45912,8 +17286,8 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` >
        - - -
        + dangerouslySetInnerHTML={1} + />
        - - -
        + dangerouslySetInnerHTML={"2.17"} + title="avg: 2.17, max: 2.17, median: 2.17, min: 2.17, stdev: 0.000" + />
        - - -
        + dangerouslySetInnerHTML={".020"} + title="avg: 0.020, max: 0.020, median: 0.020, min: 0.020, stdev: 0.000" + />
        -
        - - -
        -
        + />
        - - -
        + dangerouslySetInnerHTML={0} + />
        -
        - - -
        -
        -
        @@ -46095,9 +17444,9 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "60 0 auto", + "flex": "132 0 auto", "minWidth": "30px", - "width": "60px", + "width": "132px", } } > @@ -46107,41 +17456,6 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` -
        -
        -
        -
        -
        -
        -
        -
        + />
        -
        -
        -
        + > + - +
        + > + - +
        + > + - +
        @@ -46364,8 +17653,8 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` >
        + > + - +
        +
        +
        +
        + - +
        + > + - +
        +
        + > + - +
        + > + - +
        + > + - +
        +
        + > + - +
        + > + - +
        -
        -
        + className="cell" + > + - +
        @@ -46665,9 +17977,9 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "68 0 auto", + "flex": "132 0 auto", "minWidth": "30px", - "width": "68px", + "width": "132px", } } > @@ -46677,131 +17989,550 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` -
        +
        +
        +
        +
        +
        +
        +
        +

        + Generated by + + BenchExec (test) + +

        +
        +`; + +exports[`Render Summary for multi-table-only-columns.table.html 1`] = ` +
        +
        +

        + Benchmark Setup +

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        + Tool + + + CPAchecker + + 1.4-svn 15944M + + + CPAchecker + + 1.4-svn 15986M +
        + Limits + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
        + Host + + tortuga +
        + OS + + Linux 3.13.0-45-generic x86_64 +
        + System + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
        + Date of execution + + 2015-03-03 16:13:02 CET + + 2015-03-03 18:15:20 CET +
        + Run set + + predicateAnalysis + + valueAnalysis + + predicateAnalysis + + valueAnalysis +
        + Options + +
          +
        • + + -noout + +
        • +
        • + + -setprop log.consoleLevel=WARNING + +
        • +
        • + + -predicateAnalysis + +
        • +
        +
        +
          +
        • + + -noout + +
        • +
        • + + -setprop log.consoleLevel=WARNING + +
        • +
        • + + -valueAnalysis + +
        • +
        +
        +
          +
        • + + -noout + +
        • +
        • + + -setprop log.consoleLevel=WARNING + +
        • +
        • + + -predicateAnalysis + +
        • +
        +
        +
          +
        • + + -noout + +
        • +
        • + + -setprop log.consoleLevel=WARNING + +
        • +
        • + + -valueAnalysis + +
        • +
        +
        +
        +
        +

        + Statistics +

        +
        +
        +
        +
        +
        +
        +
        + +
        - - -
        + className="resizer " + draggable={false} + role="separator" + style={ + Object { + "cursor": "col-resize", + } + } + />
        +
        -
        - - -
        + CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis + +
        +
        -
        - - -
        + CPAchecker 2015-03-03 16:13:02 CET valueAnalysis + +
        +
        -
        - - -
        + CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis + +
        -
        - - -
        -
        + />
        -
        - - -
        + CPAchecker 2015-03-03 18:15:20 CET valueAnalysis + +
        + + Click here to select columns +
        + > + +
        + status +
        +
        - - + cputime +
        + (s)
        +
        - - + setup +
        + (s)
        +
        - - + SMT time +
        + (s)
        +
        -
        - - -
        +
        - - + status
        +
        - - + cputime +
        + (s)
        -
        -
        - - -
        + className="resizer " + draggable={false} + role="separator" + style={ + Object { + "cursor": "col-resize", + } + } + />
        - - + setup +
        + (s)
        +
        - - + variable count
        -
        -
        -
        -
        + > + +
        + status +
        +
        - - + cputime +
        + (s)
        -
        -
        - - -
        + className="resizer " + draggable={false} + role="separator" + style={ + Object { + "cursor": "col-resize", + } + } + />
        - - + setup +
        + (s)
        +
        - - + SMT time +
        + (s)
        +
        -
        - - -
        +
        - - + status
        +
        - - + cputime +
        + (s)
        +
        - - + setup +
        + (s)
        +
        - - + variable count
        +
        +
        +
        @@ -47268,8 +19178,7 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` >
        - - -
        + dangerouslySetInnerHTML={"10.9 "} + title="avg: 2.18, max: 2.27, median: 2.19, min: 2.06, stdev: 0.0719" + /> +
        +
        +
        - - -
        + dangerouslySetInnerHTML={".081"} + title="avg: 0.0162, max: 0.032, median: 0.018, min: 0.000, stdev: 0.0106" + />
        +
        - - -
        + dangerouslySetInnerHTML={4} + />
        - - -
        + dangerouslySetInnerHTML={"8.50"} + title="avg: 2.12, max: 2.20, median: 2.14, min: 2.02, stdev: 0.0686" + />
        - - -
        + dangerouslySetInnerHTML={"5.72"} + title="avg: 1.43, max: 1.49, median: 1.42, min: 1.38, stdev: 0.0419" + />
        - - -
        + dangerouslySetInnerHTML={"212"} + title="avg: 53.00, max: 212, median: 0, min: 0, stdev: 91.80" + />
        +
        - - -
        + dangerouslySetInnerHTML={5} + />
        - - -
        + dangerouslySetInnerHTML={"9.39"} + title="avg: 1.88, max: 1.95, median: 1.86, min: 1.83, stdev: 0.0426" + />
        - - -
        + dangerouslySetInnerHTML={"6.88"} + title="avg: 1.38, max: 1.47, median: 1.37, min: 1.31, stdev: 0.0508" + />
        -
        -
        -
        -
        -
        -
        -
        -

        - Generated by - - BenchExec (test) - -

        -
        -`; - -exports[`Render Summary for predicateAnalysis.table.html 1`] = ` -
        -
        -

        - Benchmark Setup -

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        - Tool - - - CPAchecker - - 1.4-svn 15944M - - - CPAchecker - - 1.4-svn 15986M -
        - Limits - - timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 -
        - Host - - tortuga -
        - OS - - Linux 3.13.0-45-generic x86_64 -
        - System - - CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB -
        - Date of execution - - 2015-03-03 16:13:02 CET - - 2015-03-03 18:15:20 CET -
        - Run set - - predicateAnalysis - - predicateAnalysis -
        - Options - -
          -
        • - - -noout - -
        • -
        • - - -setprop log.consoleLevel=WARNING - -
        • -
        • - - -predicateAnalysis - -
        • -
        -
        -
          -
        • - - -noout - -
        • -
        • - - -setprop log.consoleLevel=WARNING - -
        • -
        • - - -predicateAnalysis - -
        • -
        -
        -
        -
        -

        - Statistics -

        -
        -
        -
        -
        -
        -
        -
        - -
        +
        +
        +
        - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis -
        + > +
        +
        - - CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis -
        - - Click here to select columns -
        - -
        + />
        - status + -
        -
        - cputime -
        - (s) -
        -
        - walltime -
        - (s) + -
        -
        - memory -
        - (MB) + -
        -
        - -
        + />
        - status + -
        -
        - cputime -
        - (s) -
        -
        - walltime -
        - (s) + -
        -
        - memory -
        - (MB) + -
        -
        -
        -
        -
        -
        -
        -
        -
        + > + - +
        + > + - +
        + > + - +
        + > + - +
        + > + - +
        + > + - +
        @@ -48418,8 +19911,8 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` >
        - - -
        + dangerouslySetInnerHTML={3} + />
        - - -
        + dangerouslySetInnerHTML={".029"} + title="avg: 0.00967, max: 0.018, median: 0.011, min: 0.000, stdev: 0.00741" + />
        - - -
        + dangerouslySetInnerHTML={2} + />
        - - -
        -
        -
        -
        -
        -
        @@ -48795,7 +20255,7 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "344px", + "minWidth": "588px", } } > @@ -48869,6 +20329,24 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` title="avg: 2.14, max: 2.23, median: 2.14, min: 2.06, stdev: 0.0854" />
        +
        +
        +
        +
        +
        +
        + - +
        +
        +
        +
        + - +
        +
        +
        +
        + - +
        +
        +
        +
        +
        +
        +
        +
        + - +
        +
        +
        +
        + - +
        +
        +
        +
        + - +
        +
        @@ -49076,16 +20702,16 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "84 0 auto", + "flex": "60 0 auto", "minWidth": "30px", - "width": "84px", + "width": "60px", } } >
        -
        -
        -
        -
        -
        @@ -49398,7 +20989,7 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "344px", + "minWidth": "588px", } } > @@ -49421,8 +21012,8 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` >
        + > + - +
        + > + - +
        -
        -
        -
        -
        -
        + > + - +
        - - -
        + dangerouslySetInnerHTML={"1.86"} + title="avg: 1.86, max: 1.86, median: 1.86, min: 1.86, stdev: 0.000" + />
        - - -
        + dangerouslySetInnerHTML={"1.38"} + title="avg: 1.38, max: 1.38, median: 1.38, min: 1.38, stdev: 0.000" + />
        - - -
        + dangerouslySetInnerHTML={".015"} + title="avg: 0.015, max: 0.015, median: 0.015, min: 0.015, stdev: 0.000" + />
        @@ -49780,9 +21336,9 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "68 0 auto", + "flex": "132 0 auto", "minWidth": "30px", - "width": "68px", + "width": "132px", } } > @@ -49793,730 +21349,373 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = `
        -
        -
        -
        -
        -
        -
        -

        - Generated by - - BenchExec (test) - -

        -
        -`; - -exports[`Render Summary for predicateAnalysis-reverse.table.html 1`] = ` -
        -
        -

        - Benchmark Setup -

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        - Tool - - - CPAchecker - - 1.4-svn 15986M - - - CPAchecker - - 1.4-svn 15944M -
        - Limits - - timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 -
        - Host - - tortuga -
        - OS - - Linux 3.13.0-45-generic x86_64 -
        - System - - CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB -
        - Date of execution - - 2015-03-03 18:15:20 CET - - 2015-03-03 16:13:02 CET -
        - Run set - - predicateAnalysis - - predicateAnalysis -
        - Options - -
          -
        • - - -noout - -
        • -
        • - - -setprop log.consoleLevel=WARNING - -
        • -
        • - - -predicateAnalysis - -
        • -
        -
        -
          -
        • - - -noout - -
        • -
        • - - -setprop log.consoleLevel=WARNING - -
        • -
        • - - -predicateAnalysis - -
        • -
        -
        -
        -
        -

        - Statistics -

        -
        -
        -
        -
        -
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        -
        - -
        +
        +
        +
        - - CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis -
        + > +
        + - +
        +
        - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis -
        + className="cell" + > + - +
        -
        -
        - - Click here to select columns -
        + className="cell" + > + - +
        - -
        + />
        - status -
        -
        - cputime -
        - (s) -
        -
        - walltime -
        - (s) -
        -
        - memory -
        - (MB) -
        -
        - -
        + />
        - status -
        -
        - cputime -
        - (s) + -
        -
        - walltime -
        - (s) + -
        -
        - memory -
        - (MB) + -
        -
        -
        -
        @@ -50547,7 +21746,8 @@ exports[`Render Summary for predicateAnalysis-reverse.table.html 1`] = ` >
        + > + - +
        + > + - +
        + > + - +
        -
        -
        -
        + > + - +
        + > + - +
        -
        -
        + className="cell" + > + - +
        - - -
        + dangerouslySetInnerHTML={0} + />
        + > + - +
        + > + - +
        @@ -50859,9 +22025,8 @@ exports[`Render Summary for predicateAnalysis-reverse.table.html 1`] = ` >
        - - -
        + dangerouslySetInnerHTML={0} + />
        + > + - +
        + > + - +
        @@ -50916,22 +22083,315 @@ exports[`Render Summary for predicateAnalysis-reverse.table.html 1`] = `
        +
        +
        +
        +
        +
        +
        +

        + Generated by + + BenchExec (test) + +

        +
        +`; + +exports[`Render Summary for multi-table-with-columns.diff.html 1`] = ` +
        +
        +

        + Benchmark Setup +

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        + Tool + + + CPAchecker + + 1.4-svn 15944M + + + CPAchecker + + 1.4-svn 15986M +
        + Limits + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
        + Host + + tortuga +
        + OS + + Linux 3.13.0-45-generic x86_64 +
        + System + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
        + Date of execution + + 2015-03-03 16:13:02 CET + + 2015-03-03 18:15:20 CET +
        + Run set + + predicateAnalysis + + valueAnalysis + + predicateAnalysis + + valueAnalysis +
        + Options + +
          +
        • + + -noout + +
        • +
        • + + -setprop log.consoleLevel=WARNING + +
        • +
        • + + -predicateAnalysis + +
        • +
        +
        +
          +
        • + + -noout + +
        • +
        • + + -setprop log.consoleLevel=WARNING + +
        • +
        • + + -valueAnalysis + +
        • +
        +
        +
          +
        • + + -noout + +
        • +
        • + + -setprop log.consoleLevel=WARNING + +
        • +
        • + + -predicateAnalysis + +
        • +
        +
        +
          +
        • + + -noout + +
        • +
        • + + -setprop log.consoleLevel=WARNING + +
        • +
        • + + -valueAnalysis + +
        • +
        +
        +
        +
        +

        + Statistics +

        +
        +
        +
        +
        +
        +
        + +
        + + CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis +
        -
        -
        -
        -
        -
        + />
        + + CPAchecker 2015-03-03 16:13:02 CET valueAnalysis +
        -
        -
        -
        + "minWidth": "2px", + "position": "relative", + "width": "2px", + } + } + />
        + + CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis +
        -
        -
        + />
        + + CPAchecker 2015-03-03 18:15:20 CET valueAnalysis +
        + + Click here to select columns +
        + > + +
        + status +
        +
        + cputime +
        + (s) +
        +
        + setup +
        + (s) +
        +
        + SMT time +
        + (s) +
        +
        + > + +
        + status +
        +
        + cputime +
        + (s) +
        +
        + setup +
        + (s) +
        +
        -
        -
        -
        -
        + className="header-data clickable" + title="Show Quantile Plot of this column" + > + variable count +
        + > + +
        + status +
        +
        + cputime +
        + (s) +
        +
        + analysis +
        + (s) +
        +
        + SMT time +
        + (s) +
        +
        + > + +
        -
        +
        + status +
        +
        + cputime +
        + (s) +
        +
        + analysis +
        + (s) +
        +
        + variable count +
        +
        +
        +
        @@ -51549,8 +23271,7 @@ exports[`Render Summary for predicateAnalysis-reverse.table.html 1`] = ` >
        -
        -
        -
        -
        -
        @@ -51928,7 +23614,7 @@ exports[`Render Summary for predicateAnalysis-reverse.table.html 1`] = ` Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "344px", + "minWidth": "588px", } } > @@ -51951,8 +23637,8 @@ exports[`Render Summary for predicateAnalysis-reverse.table.html 1`] = ` >
        - - -
        + dangerouslySetInnerHTML={"4.29"} + title="avg: 2.14, max: 2.23, median: 2.14, min: 2.06, stdev: 0.0854" + />
        - - -
        + dangerouslySetInnerHTML={"3.16"} + title="avg: 1.58, max: 1.67, median: 1.58, min: 1.49, stdev: 0.0860" + />
        - - -
        + dangerouslySetInnerHTML={".029"} + title="avg: 0.0145, max: 0.018, median: 0.0145, min: 0.011, stdev: 0.00350" + />
        - - -
        + dangerouslySetInnerHTML={"2.12"} + title="avg: 2.12, max: 2.12, median: 2.12, min: 2.12, stdev: 0.000" + />
        - - -
        + dangerouslySetInnerHTML={"1.41"} + title="avg: 1.41, max: 1.41, median: 1.41, min: 1.41, stdev: 0.000" + />
        - - -
        + dangerouslySetInnerHTML={"0"} + title="avg: 0.00, max: 0, median: 0, min: 0, stdev: 0.00" + />
        -
        -
        -
        -
        -
        -
        -
        -

        - Generated by - - BenchExec (test) - -

        -
        -`; - -exports[`Render Summary for rows-with-scores.html 1`] = ` -
        -
        -

        - Benchmark Setup -

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        - Tool - -
        - Limits - - timelimit: -, memlimit: -, CPU core limit: - -
        - Host - - t460p -
        - OS - - Linux-5.0.0-37-generic-x86_64-with-Ubuntu-18.04-bionic - - Linux-5.3.0-53-generic-x86_64-with-Ubuntu-18.04-bionic -
        - System - - CPU: Intel Core i5-6440HQ CPU @ 2.60GHz, cores: 4, frequency: 3500 MHz, Turbo Boost: enabled; RAM: 33587 MB - - CPU: Intel Core i5-6440HQ CPU @ 2.60GHz, cores: 4, frequency: 3500 MHz, Turbo Boost: enabled; RAM: 33537 MB -
        - Date of execution - - 2019-12-20 15:32:33 CET - - 2020-06-10 09:17:06 CEST -
        - Run set - - 0 - - 0 -
        - Options - -
          -
        • - - true - -
        • -
        -
        -
          -
        • - - true - -
        • -
        -
        - Properties - - test -
        -
        -
        -

        - Statistics -

        -
        -
        -
        -
        -
        -
        +
        + > +
        +
        -
        - -
        +
        +
        +
        +
        +
        +
        - - DummyTool 2019-12-20 15:32:33 CET 0 -
        + > +
        +
        - - DummyTool 2020-06-10 09:17:06 CEST 0 -
        +
        +
        +
        - - Click here to select columns -
        - -
        + />
        - status -
        -
        - cputime -
        - (s) -
        -
        +
        +
        +
        - walltime -
        - (s) -
        -
        +
        - memory -
        - (MB) -
        -
        - cpuenergy -
        - (J) + -
        +
        +
        + - +
        +
        +
        + } + > +
        + - +
        - -
        + />
        - status -
        + className="cell" + dangerouslySetInnerHTML={2} + /> +
        +
        +
        +
        +
        +
        +
        +
        +
        - cputime -
        - (s) -
        -
        - walltime -
        - (s) + -
        -
        - memory -
        - (MB) + -
        -
        - cpuenergy -
        - (J) + -
        -
        -
        -
        @@ -52926,8 +24371,8 @@ exports[`Render Summary for rows-with-scores.html 1`] = ` >
        + > + - +
        + > + - +
        + > + - +
        +
        + > +
        +
        +
        + > + - +
        + > + - +
        -
        -
        + className="cell" + > + - +
        - - -
        + dangerouslySetInnerHTML={1} + />
        - - -
        + dangerouslySetInnerHTML={"0"} + title="avg: 0.00, max: 0, median: 0, min: 0, stdev: 0.00" + />
        +
        +
        - - -
        + dangerouslySetInnerHTML={1} + />
        +
        +
        +
        +
        +
        +
        +
        + > + - +
        -
        -
        + className="cell" + > + - +
        -
        -
        -
        + > + - +
        -
        -
        -
        + > + - +
        + > + - +
        @@ -53633,8 +25105,8 @@ exports[`Render Summary for rows-with-scores.html 1`] = ` >
        -
        -
        -
        -
        -
        -
        + > + - +
        + > + - +
        -
        -
        -
        -
        -
        + > + - +
        - - -
        + dangerouslySetInnerHTML={"1.86"} + title="avg: 1.86, max: 1.86, median: 1.86, min: 1.86, stdev: 0.000" + />
        - - -
        -
        -
        -
        - - -
        + dangerouslySetInnerHTML={".033"} + title="avg: 0.033, max: 0.033, median: 0.033, min: 0.033, stdev: 0.000" + />
        - - -
        + dangerouslySetInnerHTML={".015"} + title="avg: 0.015, max: 0.015, median: 0.015, min: 0.015, stdev: 0.000" + />
        -
        - - -
        -
        -
        @@ -54084,7 +25449,7 @@ exports[`Render Summary for rows-with-scores.html 1`] = ` Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "404px", + "minWidth": "588px", } } > @@ -54107,8 +25472,8 @@ exports[`Render Summary for rows-with-scores.html 1`] = ` >
        -
        -
        -
        + > + - +
        + > + - +
        + > + - +
        -
        -
        -
        + > + - +
        + > + - +
        -
        -
        -
        -
        -
        + > + - +
        + > + - +
        -
        -
        -
        + > + - +
        + > + - +
        + > + - +
        -
        -
        -
        + > + - +
        + > + - +
        +
        +
        +
        +
        +
        +
        +

        + Generated by + + BenchExec (test) + +

        +
        +`; + +exports[`Render Summary for multi-table-with-columns.table.html 1`] = ` +
        +
        +

        + Benchmark Setup +

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        + Tool + + + CPAchecker + + 1.4-svn 15944M + + + CPAchecker + + 1.4-svn 15986M +
        + Limits + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
        + Host + + tortuga +
        + OS + + Linux 3.13.0-45-generic x86_64 +
        + System + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
        + Date of execution + + 2015-03-03 16:13:02 CET + + 2015-03-03 18:15:20 CET +
        + Run set + + predicateAnalysis + + valueAnalysis + + predicateAnalysis + + valueAnalysis +
        + Options + +
          +
        • + + -noout + +
        • +
        • + + -setprop log.consoleLevel=WARNING + +
        • +
        • + + -predicateAnalysis + +
        • +
        +
        +
          +
        • + + -noout + +
        • +
        • + + -setprop log.consoleLevel=WARNING + +
        • +
        • + + -valueAnalysis + +
        • +
        +
        +
          +
        • + + -noout + +
        • +
        • + + -setprop log.consoleLevel=WARNING + +
        • +
        • + + -predicateAnalysis + +
        • +
        +
        +
          +
        • + + -noout + +
        • +
        • + + -setprop log.consoleLevel=WARNING + +
        • +
        • + + -valueAnalysis + +
        • +
        +
        +
        +
        +

        + Statistics +

        +
        +
        +
        +
        +
        +
        + +
        + + CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis +
        -
        - - -
        -
        + />
        -
        - - -
        -
        -
        + CPAchecker 2015-03-03 16:13:02 CET valueAnalysis +
        - - -
        -
        -
        -
        - - -
        + />
        + + CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis +
        -
        - - -
        -
        + />
        -
        - - -
        -
        -
        + CPAchecker 2015-03-03 18:15:20 CET valueAnalysis +
        - - -
        -
        -
        -
        - - -
        + />
        + + Click here to select columns +
        -
        -
        +
        - - + status
        +
        - - + cputime +
        + (s)
        +
        - - + setup +
        + (s)
        +
        - - + SMT time +
        + (s)
        +
        + > + +
        + status +
        +
        - - + cputime +
        + (s)
        +
        - - + setup +
        + (s)
        +
        - - + variable count
        +
        -
        - - -
        +
        -
        -
        -
        -
        -
        -
        -
        -

        - Generated by - - BenchExec (test) - -

        -
        -`; - -exports[`Render Summary for simple-table-with-columns.table.html 1`] = ` -
        -
        -

        - Benchmark Setup -

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        - Tool - - - CPAchecker - - 1.4-svn 15944M -
        - Limits - - timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 -
        - Host - - tortuga -
        - OS - - Linux 3.13.0-45-generic x86_64 -
        - System - - CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB -
        - Date of execution - - 2015-03-03 16:13:02 CET -
        - Run set - - predicateAnalysis -
        - Options - -
          -
        • - - -noout - -
        • -
        • - - -setprop log.consoleLevel=WARNING - -
        • -
        • - - -predicateAnalysis - -
        • -
        -
        -
        -
        -

        - Statistics -

        -
        -
        -
        -
        -
        -
        -
        - -
        +
        + status +
        + > +
        + cputime +
        + (s) +
        +
        +
        - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - + analysis +
        + (s) +
        -
        -
        - - Click here to select columns - + SMT time +
        + (s) +
        @@ -55424,7 +26882,7 @@ exports[`Render Summary for simple-table-with-columns.table.html 1`] = ` className="header-data clickable" title="Show Quantile Plot of this column" > - CPU Time + cputime
        (s)
        @@ -55446,10 +26904,10 @@ exports[`Render Summary for simple-table-with-columns.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "60 0 auto", + "flex": "84 0 auto", "minWidth": "30px", "position": "relative", - "width": "60px", + "width": "84px", } } > @@ -55457,7 +26915,7 @@ exports[`Render Summary for simple-table-with-columns.table.html 1`] = ` className="header-data clickable" title="Show Quantile Plot of this column" > - setup + analysis
        (s)
        @@ -55472,6 +26930,37 @@ exports[`Render Summary for simple-table-with-columns.table.html 1`] = ` } />
        +
        +
        + variable count +
        +
        +
        @@ -55546,9 +27035,9 @@ exports[`Render Summary for simple-table-with-columns.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "84 0 auto", + "flex": "76 0 auto", "minWidth": "30px", - "width": "84px", + "width": "76px", } } > @@ -55576,39 +27065,22 @@ exports[`Render Summary for simple-table-with-columns.table.html 1`] = ` title="avg: 1.60, max: 1.67, median: 1.62, min: 1.49, stdev: 0.0605" />
        -
        -
        - - -
        + dangerouslySetInnerHTML={4} + />
        - - -
        + dangerouslySetInnerHTML={"5.72"} + title="avg: 1.43, max: 1.49, median: 1.42, min: 1.38, stdev: 0.0419" + />
        -
        -
        + > +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        @@ -55784,7 +27340,7 @@ exports[`Render Summary for simple-table-with-columns.table.html 1`] = ` Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "192px", + "minWidth": "588px", } } > @@ -55807,8 +27363,8 @@ exports[`Render Summary for simple-table-with-columns.table.html 1`] = ` >
        + - +
        +
        +
        +
        +
        +
        + - +
        +
        + - +
        +
        +
        +
        +
        + - +
        +
        +
        +
        + > + - +
        -
        -
        + > +
        + - +
        +
        +
        + - +
        +
        +
        +
        +
        +
        + - +
        +
        +
        +
        + - +
        +
        + - +
        +
        +
        +
        + > + - +
        + > + - +
        @@ -56007,8 +27730,8 @@ exports[`Render Summary for simple-table-with-columns.table.html 1`] = ` >
        -
        -
        -
        -
        - - -
        + dangerouslySetInnerHTML={"5.63"} + title="avg: 1.88, max: 1.95, median: 1.85, min: 1.83, stdev: 0.0523" + />
        - - -
        + dangerouslySetInnerHTML={".131"} + title="avg: 0.0437, max: 0.070, median: 0.037, min: 0.024, stdev: 0.0194" + />
        -
        -
        -
        -
        -
        -
        -
        -

        - Generated by - - BenchExec (test) - -

        -
        -`; - -exports[`Render Summary for simple-table-with-links.table.html 1`] = ` -
        -
        -

        - Benchmark Setup -

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        - Tool - - - CPAchecker - - 1.4-svn 15944M -
        - Limits - - timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 -
        - Host - - tortuga -
        - OS - - Linux 3.13.0-45-generic x86_64 -
        - System - - CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB -
        - Date of execution - - 2015-03-03 16:13:02 CET -
        - Run set - - predicateAnalysis -
        - Options - -
          -
        • - - -noout - -
        • -
        • - - -setprop log.consoleLevel=WARNING - -
        • -
        • - - -predicateAnalysis - -
        • -
        -
        -
        -
        -

        - Statistics -

        -
        -
        -
        -
        -
        -
        -
        - -
        - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis -
        -
        -
        - - Click here to select columns -
        - -
        -
        - status -
        -
        - cputime -
        - (s) -
        -
        -
        -
        @@ -56727,7 +28097,8 @@ exports[`Render Summary for simple-table-with-links.table.html 1`] = ` >
        -
        -
        +
        +
        +
        - - -
        + dangerouslySetInnerHTML={0} + />
        + > + - +
        -
        -
        + > +
        + - +
        +
        + className="cell" + > + - +
        -
        -
        + > +
        +
        + > + - +
        +
        +
        +
        + - +
        +
        +
        +
        + - +
        @@ -57105,39 +28515,40 @@ exports[`Render Summary for simple-table-with-links.table.html 1`] = ` title="avg: 2.19, max: 2.19, median: 2.19, min: 2.19, stdev: 0.000" />
        -
        -
        + > +
        +
        -
        -
        + > +
        +
        -
        -
        + > +
        +
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -

        - Generated by - - BenchExec (test) - -

        -
        -`; - -exports[`Render Summary for simple-table-with-numberOfDigits.table.html 1`] = ` -
        -
        -

        - Benchmark Setup -

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        - Tool - - - CPAchecker - - 1.4-svn 15944M -
        - Limits - - timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 -
        - Host - - tortuga -
        - OS - - Linux 3.13.0-45-generic x86_64 -
        - System - - CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB -
        - Date of execution - - 2015-03-03 16:13:02 CET -
        - Run set - - predicateAnalysis -
        - Options - -
          -
        • - - -noout - -
        • -
        • - - -setprop log.consoleLevel=WARNING - -
        • -
        • - - -predicateAnalysis - -
        • -
        -
        -
        -
        -

        - Statistics -

        -
        -
        -
        -
        -
        + style={ + Object { + "boxSizing": "border-box", + "flex": "76 0 auto", + "minWidth": "30px", + "width": "76px", + } + } + > +
        +
        +
        +
        +
        +
        +
        +
        +
        -
        - -
        - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis -
        -
        -
        + > +
        +
        - - Click here to select columns -
        +
        +
        +
        - -
        + />
        - status -
        -
        - cputime -
        - (s) + -
        -
        - walltime -
        - (s) + -
        -
        - memory + -
        +
        +
        +
        +
        +
        +
        -
        -
        -
        -
        + > +
        +
        + > + - +
        + > + - +
        + > + - +
        @@ -57983,8 +29198,8 @@ exports[`Render Summary for simple-table-with-numberOfDigits.table.html 1`] = ` >
        - - -
        + dangerouslySetInnerHTML={1} + />
        +
        +
        +
        +
        +
        +
        +
        @@ -58069,40 +29332,41 @@ exports[`Render Summary for simple-table-with-numberOfDigits.table.html 1`] = ` -
        -
        -
        + > +
        + - +
        +
        + className="cell" + > + - +
        -
        -
        -
        -
        -
        + > + - +
        + > + - +
        + > + - +
        @@ -58336,8 +29565,8 @@ exports[`Render Summary for simple-table-with-numberOfDigits.table.html 1`] = ` >
        + > + - +
        + > + - +
        -
        -
        -
        -
        -
        + > + - +
        + > + - +
        + > + - +
        -
        -
        -
        -
        -
        + > + - +
        + > + - +
        + > + - +
        -
        -
        -
        -
        -
        + > + - +
        @@ -58798,7 +29922,7 @@ exports[`Render Summary for simple-table-with-numberOfDigits.table.html 1`] = `
        `; -exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` +exports[`Render Summary for multi-table-with-diff-over-column.diff.html 1`] = `
        @@ -58818,7 +29942,7 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` 1.4-svn 15944M + + + CPAchecker + + 1.4-svn 15986M + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 @@ -58851,7 +29988,7 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` tortuga @@ -58864,7 +30001,7 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` Linux 3.13.0-45-generic x86_64 @@ -58877,7 +30014,7 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB @@ -58890,10 +30027,16 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` 2015-03-03 16:13:02 CET + + 2015-03-03 18:15:20 CET + predicateAnalysis + + valueAnalysis + + + predicateAnalysis + + + valueAnalysis +
      + +
        +
      • + + -noout + +
      • +
      • + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -valueAnalysis + +
      • +
      + + +
        +
      • + + -noout + +
      • +
      • + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -predicateAnalysis + +
      • +
      + + +
        +
      • + + -noout + +
      • +
      • + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -valueAnalysis + +
      • +
      + @@ -58960,7 +30187,7 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` role="table" style={ Object { - "minWidth": "342px", + "minWidth": "588px", } } > @@ -58974,41 +30201,176 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "342px", + "minWidth": "588px", + } + } + > +
      +
      + +
      +
      +
      +
      +
      + + CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis + +
      +
      +
      +
      + + CPAchecker 2015-03-03 16:13:02 CET valueAnalysis + +
      +
      +
      + />
      -
      - -
      + + CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis +
      - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis + CPAchecker 2015-03-03 18:15:20 CET valueAnalysis
      @@ -59179,7 +30541,7 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` > cputime
      - (ms) + (s)
      @@ -59210,9 +30572,9 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` className="header-data clickable" title="Show Quantile Plot of this column" > - cputime-h + setup
      - (h) + (s)
      - walltime + SMT time
      (s)
      @@ -59257,6 +30619,22 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` } } /> +
      +
      +
      @@ -59276,9 +30654,7 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` className="header-data clickable" title="Show Quantile Plot of this column" > - walltime -
      - (ns) + status
      @@ -59309,9 +30685,9 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` className="header-data clickable" title="Show Quantile Plot of this column" > - walltime + cputime
      - (Gs) + (s)
      @@ -59342,9 +30718,9 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` className="header-data clickable" title="Show Quantile Plot of this column" > - memory + setup
      - (MB) + (s)
      @@ -59375,9 +30751,7 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` className="header-data clickable" title="Show Quantile Plot of this column" > - memory-GB -
      - (GB) + variable count
      -
      -
      -
      -
      -
      -
      -
      + > + +
      + status +
      +
      + cputime +
      + (s) +
      +
      + setup +
      + (s) +
      +
      + SMT time +
      + (s) +
      +
      + +
      +
      + status +
      +
      + cputime +
      + (s) +
      +
      + setup +
      + (s) +
      +
      + variable count +
      +
      +
      +
      @@ -59615,8 +31090,7 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` >
      - - -
      + dangerouslySetInnerHTML={4} + />
      +
      +
      +
      +
      +
      +
      +
      +
      - - -
      + dangerouslySetInnerHTML={4} + />
      - - -
      + dangerouslySetInnerHTML={"7.54"} + title="avg: 1.88, max: 1.95, median: 1.88, min: 1.83, stdev: 0.0452" + />
      -
      -
      + > +
      +
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      @@ -59968,7 +31433,7 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "342px", + "minWidth": "588px", } } > @@ -59991,8 +31456,8 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` >
      -
      -
      + />
      -
      -
      +
      @@ -60348,7 +31800,7 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "342px", + "minWidth": "588px", } } > @@ -60371,8 +31823,8 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` >
      -
      -
      + />
      + > + - +
      + > + - +
      -
      -
      + className="cell" + > + - +
      +
      + > + - +
      + > + - +
      + > + - +
      @@ -60751,8 +32190,8 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` >
      - - -
      + dangerouslySetInnerHTML={"2.19"} + title="avg: 2.19, max: 2.19, median: 2.19, min: 2.19, stdev: 0.000" + />
      - - -
      + dangerouslySetInnerHTML={"1.59"} + title="avg: 1.59, max: 1.59, median: 1.59, min: 1.59, stdev: 0.000" + />
      - - -
      + dangerouslySetInnerHTML={".000"} + title="avg: 0.000, max: 0.000, median: 0.000, min: 0.000, stdev: 0.000" + />
      -
      - - -
      -
      + />
      - - -
      + dangerouslySetInnerHTML={2} + />
      - - -
      + dangerouslySetInnerHTML={"4.28"} + title="avg: 2.14, max: 2.16, median: 2.14, min: 2.12, stdev: 0.0211" + />
      - - -
      -
      -
      -
      -
      -
      -
      -
      -
      -

      - Generated by - - BenchExec (test) - -

      -
      -`; - -exports[`Render Summary for smt.diff.html 1`] = ` -
      -
      -

      - Benchmark Setup -

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      - Tool - - MathSAT5.3.5 - - SMTInterpol2.1-183-g4d3bb9f -
      - Limits - - timelimit: 10 s, memlimit: 100 MB, CPU core limit: 1 -
      - Host - - tortuga -
      - OS - - Linux 3.13.0-53-generic x86_64 -
      - System - - CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389436 kB -
      - Date of execution - - 2015-05-27 10:04:55 CEST - - 2015-05-27 10:04:27 CEST -
      - Run set - - mathsat - - smtinterpol -
      - Properties - - sat -
      -
      -
      -

      - Statistics -

      -
      -
      -
      -
      -
      -
      -
      -
      - -
      -
      -
      - - MathSAT 2015-05-27 10:04:55 CEST mathsat -
      - - SMTInterpol 2015-05-27 10:04:27 CEST smtinterpol - -
      -
      -
      -
      -
      - - Click here to select columns - -
      -
      -
      - -
      -
      - status -
      -
      - cputime -
      - (s) -
      -
      - walltime -
      - (s) -
      -
      - memory -
      -
      - -
      + />
      - status -
      -
      - cputime -
      - (s) -
      -
      - walltime -
      - (s) -
      -
      - memory -
      -
      -
      -
      @@ -61609,7 +32557,8 @@ exports[`Render Summary for smt.diff.html 1`] = ` >
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      +
      -
      -
      -
      -
      -
      -
      -
      -

      - Generated by - - BenchExec (test) - -

      -
      -`; - -exports[`Render Summary for smt.table.html 1`] = ` -
      -
      -

      - Benchmark Setup -

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      - Tool - - MathSAT5.3.5 - - SMTInterpol2.1-183-g4d3bb9f -
      - Limits - - timelimit: 10 s, memlimit: 100 MB, CPU core limit: 1 -
      - Host - - tortuga -
      - OS - - Linux 3.13.0-53-generic x86_64 -
      - System - - CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389436 kB -
      - Date of execution - - 2015-05-27 10:04:55 CEST - - 2015-05-27 10:04:27 CEST -
      - Run set - - mathsat - - smtinterpol -
      - Properties - - sat -
      -
      -
      -

      - Statistics -

      -
      -
      -
      -
      -
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      -
      - -
      - - MathSAT 2015-05-27 10:04:55 CEST mathsat -
      + > +
      +
      - - SMTInterpol 2015-05-27 10:04:27 CEST smtinterpol -
      -
      -
      - - Click here to select columns -
      - -
      + />
      - status -
      -
      - cputime -
      - (s) + -
      -
      +
      + } + > +
      + - +
      - walltime -
      - (s) + -
      +
      +
      +
      +
      +
      +
      +
      +
      +
      - memory -
      -
      - -
      + />
      - status -
      -
      - cputime -
      - (s) + -
      -
      - walltime -
      - (s) + -
      -
      - memory + -
      -
      -
      -
      @@ -62477,7 +33291,8 @@ exports[`Render Summary for smt.table.html 1`] = ` >
      + > + - +
      + > + - +
      + > + - +
      + > + - +
      + > + - +
      -
      -
      -
      -
      -
      + > + - +
      - - -
      + dangerouslySetInnerHTML={0} + />
      + > + - +
      + > + - +
      - - -
      + dangerouslySetInnerHTML={0} + />
      + > + - +
      + > + - +
      @@ -62866,7 +33648,7 @@ exports[`Render Summary for smt.table.html 1`] = `
      `; -exports[`Render Summary for task-def-files.table.html 1`] = ` +exports[`Render Summary for multi-table-with-diff-over-column.table.html 1`] = `
      @@ -62886,9 +33668,29 @@ exports[`Render Summary for task-def-files.table.html 1`] = ` - DummyTool + + CPAchecker + + 1.4-svn 15944M + + + + CPAchecker + + 1.4-svn 15986M - timelimit: -, memlimit: -, CPU core limit: - + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 - t460p + tortuga - Linux-5.0.0-37-generic-x86_64-with-Ubuntu-18.04-bionic - - - Linux-5.3.0-53-generic-x86_64-with-Ubuntu-18.04-bionic + Linux 3.13.0-45-generic x86_64 - CPU: Intel Core i5-6440HQ CPU @ 2.60GHz, cores: 4, frequency: 3500 MHz, Turbo Boost: enabled; RAM: 33587 MB - - - CPU: Intel Core i5-6440HQ CPU @ 2.60GHz, cores: 4, frequency: 3500 MHz, Turbo Boost: enabled; RAM: 33537 MB + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB - 2019-12-20 15:32:33 CET + 2015-03-03 16:13:02 CET - 2020-06-10 09:17:06 CEST + 2015-03-03 18:15:20 CET - 0 + predicateAnalysis - 0 + valueAnalysis + + + predicateAnalysis + + + valueAnalysis
      • - true + -noout + +
      • +
      • + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -predicateAnalysis
      • - true + -noout + +
      • +
      • + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -valueAnalysis
      - - - - Properties - - test +
        +
      • + + -noout + +
      • +
      • + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -predicateAnalysis + +
      • +
      + + +
        +
      • + + -noout + +
      • +
      • + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -valueAnalysis + +
      • +
      @@ -63060,7 +33913,7 @@ exports[`Render Summary for task-def-files.table.html 1`] = ` role="table" style={ Object { - "minWidth": "404px", + "minWidth": "588px", } } > @@ -63074,7 +33927,7 @@ exports[`Render Summary for task-def-files.table.html 1`] = ` Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "404px", + "minWidth": "588px", } } > @@ -63136,23 +33989,23 @@ exports[`Render Summary for task-def-files.table.html 1`] = ` />
      - DummyTool 2019-12-20 15:32:33 CET 0 + CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis
      - DummyTool 2020-06-10 09:17:06 CEST 0 + CPAchecker 2015-03-03 16:13:02 CET valueAnalysis + +
      +
      +
      +
      + + CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis + +
      +
      +
      +
      + + CPAchecker 2015-03-03 18:15:20 CET valueAnalysis
      @@ -63337,6 +34280,39 @@ exports[`Render Summary for task-def-files.table.html 1`] = ` } />
      +
      +
      + setup +
      + (s) +
      +
      +
      - walltime + SMT time +
      + (s) +
      +
      +
      +
      + +
      +
      +
      + status +
      +
      +
      +
      +
      + cputime
      (s)
      @@ -63377,10 +34433,10 @@ exports[`Render Summary for task-def-files.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "68 0 auto", + "flex": "60 0 auto", "minWidth": "30px", "position": "relative", - "width": "68px", + "width": "60px", } } > @@ -63388,9 +34444,9 @@ exports[`Render Summary for task-def-files.table.html 1`] = ` className="header-data clickable" title="Show Quantile Plot of this column" > - memory + setup
      - (MB) + (s)
      @@ -63421,9 +34477,7 @@ exports[`Render Summary for task-def-files.table.html 1`] = ` className="header-data clickable" title="Show Quantile Plot of this column" > - cpuenergy -
      - (J) + variable count
      +
      +
      + setup +
      + (s) +
      +
      +
      - walltime + SMT time
      (s)
      @@ -63548,6 +34635,22 @@ exports[`Render Summary for task-def-files.table.html 1`] = ` } } /> +
      +
      +
      - memory + status +
      +
      +
      +
      +
      + cputime
      - (MB) + (s)
      @@ -63600,9 +34734,40 @@ exports[`Render Summary for task-def-files.table.html 1`] = ` className="header-data clickable" title="Show Quantile Plot of this column" > - cpuenergy + setup
      - (J) + (s) +
      +
      +
      +
      +
      + variable count
      @@ -63652,7 +34817,6 @@ exports[`Render Summary for task-def-files.table.html 1`] = `
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      - - -
      -
      -
      -
      - - -
      + dangerouslySetInnerHTML={"6.88"} + title="avg: 1.38, max: 1.47, median: 1.37, min: 1.31, stdev: 0.0508" + />
      - - -
      + dangerouslySetInnerHTML={4} + />
      -
      - - -
      -
      -
      @@ -64098,7 +35159,7 @@ exports[`Render Summary for task-def-files.table.html 1`] = ` Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "404px", + "minWidth": "588px", } } > @@ -64121,8 +35182,8 @@ exports[`Render Summary for task-def-files.table.html 1`] = ` >
      + > + - +
      -
      -
      -
      + > + - +
      @@ -64252,8 +35295,9 @@ exports[`Render Summary for task-def-files.table.html 1`] = ` >
      + > + - +
      -
      -
      -
      + > + - +
      -
      -
      -
      -
      -
      + > + - +
      + > + - +
      -
      -
      -
      + > + - +
      @@ -64489,8 +35461,9 @@ exports[`Render Summary for task-def-files.table.html 1`] = ` >
      + > + - +
      -
      -
      -
      + > + - +
      + > + - +
      @@ -64595,8 +35549,8 @@ exports[`Render Summary for task-def-files.table.html 1`] = ` >
      - - -
      -
      -
      -
      - - -
      + dangerouslySetInnerHTML={"6.48"} + title="avg: 2.16, max: 2.23, median: 2.19, min: 2.06, stdev: 0.0730" + />
      - - -
      + dangerouslySetInnerHTML={"4.75"} + title="avg: 1.58, max: 1.67, median: 1.59, min: 1.49, stdev: 0.0703" + />
      - - -
      + dangerouslySetInnerHTML={".029"} + title="avg: 0.00967, max: 0.018, median: 0.011, min: 0.000, stdev: 0.00741" + />
      - - -
      -
      -
      -
      - - -
      + dangerouslySetInnerHTML={"4.28"} + title="avg: 2.14, max: 2.16, median: 2.14, min: 2.12, stdev: 0.0211" + />
      - - -
      + dangerouslySetInnerHTML={"2.85"} + title="avg: 1.42, max: 1.44, median: 1.42, min: 1.41, stdev: 0.0145" + />
      - - -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      @@ -65046,7 +35893,7 @@ exports[`Render Summary for task-def-files.table.html 1`] = ` Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "404px", + "minWidth": "588px", } } > @@ -65069,8 +35916,8 @@ exports[`Render Summary for task-def-files.table.html 1`] = ` >
      -
      -
      -
      -
      -
      -
      + > + - +
      + > + - +
      -
      -
      -
      -
      -
      + > + - +
      - - -
      -
      -
      -
      - - -
      + dangerouslySetInnerHTML={"3.80"} + title="avg: 1.90, max: 1.95, median: 1.90, min: 1.85, stdev: 0.0493" + />
      - - -
      + dangerouslySetInnerHTML={"2.84"} + title="avg: 1.42, max: 1.47, median: 1.42, min: 1.37, stdev: 0.0460" + />
      - - -
      + dangerouslySetInnerHTML={".021"} + title="avg: 0.0105, max: 0.015, median: 0.0105, min: 0.006, stdev: 0.00450" + />
      -
      - - -
      -
      -
      @@ -65500,9 +36240,9 @@ exports[`Render Summary for task-def-files.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "92 0 auto", + "flex": "132 0 auto", "minWidth": "30px", - "width": "92px", + "width": "132px", } } > @@ -65520,7 +36260,7 @@ exports[`Render Summary for task-def-files.table.html 1`] = ` Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "404px", + "minWidth": "588px", } } > @@ -65543,8 +36283,8 @@ exports[`Render Summary for task-def-files.table.html 1`] = ` >
      - - -
      -
      -
      -
      - - -
      + dangerouslySetInnerHTML={"2.19"} + title="avg: 2.19, max: 2.19, median: 2.19, min: 2.19, stdev: 0.000" + />
      - - -
      + dangerouslySetInnerHTML={"1.59"} + title="avg: 1.59, max: 1.59, median: 1.59, min: 1.59, stdev: 0.000" + />
      - - -
      + dangerouslySetInnerHTML={".000"} + title="avg: 0.000, max: 0.000, median: 0.000, min: 0.000, stdev: 0.000" + />
      - - -
      + dangerouslySetInnerHTML={"4.28"} + title="avg: 2.14, max: 2.16, median: 2.14, min: 2.12, stdev: 0.0211" + />
      - - -
      + dangerouslySetInnerHTML={"2.85"} + title="avg: 1.42, max: 1.44, median: 1.42, min: 1.41, stdev: 0.0145" + />
      - - -
      + dangerouslySetInnerHTML={"0"} + title="avg: 0.00, max: 0, median: 0, min: 0, stdev: 0.00" + />
      +
      - - -
      + dangerouslySetInnerHTML={1} + />
      -
      -
      -
      -
      -
      -
      -
      -

      - Generated by - - BenchExec (test) - -

      -
      -`; - -exports[`Render Summary for test.2015-03-03_1613.diff.html 1`] = ` -
      -
      -

      - Benchmark Setup -

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      - Tool - - - CPAchecker - - 1.4-svn 15944M -
      - Limits - - timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 -
      - Host - - tortuga -
      - OS - - Linux 3.13.0-45-generic x86_64 -
      - System - - CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB -
      - Date of execution - - 2015-03-03 16:13:02 CET -
      - Run set - - predicateAnalysis - - valueAnalysis -
      - Options - -
        -
      • - - -noout - -
      • -
      • - - -setprop log.consoleLevel=WARNING - -
      • -
      • - - -predicateAnalysis - -
      • -
      -
      -
        -
      • - - -noout - -
      • -
      • - - -setprop log.consoleLevel=WARNING - -
      • -
      • - - -valueAnalysis - -
      • -
      -
      -
      -
      -

      - Statistics -

      -
      -
      -
      -
      -
      -
      + > +
      +
      -
      - -
      +
      +
      +
      - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis -
      + > +
      +
      - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis -
      +
      +
      +
      - - Click here to select columns -
      - -
      + />
      - status -
      -
      - cputime -
      - (s) -
      -
      - walltime -
      - (s) -
      -
      - memory -
      - (MB) -
      -
      - -
      + />
      - status -
      -
      - cputime -
      - (s) + -
      -
      - walltime -
      - (s) + -
      -
      - memory -
      - (MB) + -
      +
      +
      +
      +
      +
      +
      -
      -
      -
      -
      + > +
      +
      + > + - +
      + > + - +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      -
      -
      + > +
      + - +
      +
      + className="cell" + > + - +
      +
      +
      +
      + - +
      + > + - +
      + > + - +
      + > + - +
      @@ -66886,8 +37384,8 @@ exports[`Render Summary for test.2015-03-03_1613.diff.html 1`] = ` >
      + > + - +
      + > + - +
      + > + - +
      @@ -67044,52 +37542,17 @@ exports[`Render Summary for test.2015-03-03_1613.diff.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "68 0 auto", + "flex": "132 0 auto", "minWidth": "30px", - "width": "68px", + "width": "132px", } } >
      - - -
      -
      -
      -
      -
      -
      + - +
      @@ -67162,9 +37625,9 @@ exports[`Render Summary for test.2015-03-03_1613.diff.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "68 0 auto", + "flex": "84 0 auto", "minWidth": "30px", - "width": "68px", + "width": "84px", } } > @@ -67200,7 +37663,7 @@ exports[`Render Summary for test.2015-03-03_1613.diff.html 1`] = ` >
      + > + - +
      + > + - +
      + > + - +
      -
      +
      +
      +
      +
      +
      +

      + Generated by + + BenchExec (test) + +

      +
      +`; + +exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` +
      +

      + Benchmark Setup +

      +
      +
      + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + Tool + + + + CPAchecker + + 1.4-svn 15944M + + + CPAchecker + + 1.4-svn 15986M + + + CPAchecker + + 1.4-svn 15944M + + + CPAchecker + + 1.4-svn 15986M +
      + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
      + Host + + + tortuga +
      + OS + + + Linux 3.13.0-45-generic x86_64 +
      + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
      + Date of execution + + + 2015-03-03 16:13:02 CET + + 2015-03-03 18:15:20 CET + + 2015-03-03 16:13:02 CET + + 2015-03-03 18:15:20 CET +
      + Run set + + + predicateAnalysis + + predicateAnalysis + + valueAnalysis + + valueAnalysis +
      + Options + + +
        +
          -
          -
          -
          -
          + -noout + + +
        • -
          + + -setprop log.consoleLevel=WARNING + +
        • +
        • + + -predicateAnalysis + +
        • +
        +
      +
      +
        +
          +
        • + + -noout + +
        • +
        • + + -setprop log.consoleLevel=WARNING + +
        • +
        • + + -predicateAnalysis + +
        • +
        +
      +
      +
        +
          +
        • + + -noout + +
        • +
        • + + -setprop log.consoleLevel=WARNING + +
        • +
        • + + -valueAnalysis + +
        • +
        +
      +
      +
        +
          +
        • + + -noout + +
        • +
        • + + -setprop log.consoleLevel=WARNING + +
        • +
        • + + -valueAnalysis + +
        • +
        +
      +
      + + + +
      +
      +
      + className="table-content" + > +
      +
      +
      +
      +
      + status +
      +
      +
      +
      +
      + cputime +
      + (s) +
      +
      +
      +
      +
      + walltime +
      + (s) +
      +
      +
      +
      +
      + memory +
      + (MB) +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + className="table-content" + > +
      +
      +
      +
      +
      + status +
      +
      +
      +
      +
      + cputime +
      + (s) +
      +
      +
      +
      +
      + walltime +
      + (s) +
      +
      +
      +
      +
      + memory +
      + (MB) +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + className="table-content" + > +
      +
      +
      +
      +
      + status +
      +
      +
      +
      +
      + cputime +
      + (s) +
      +
      +
      +
      +
      + walltime +
      + (s) +
      +
      +
      +
      +
      + memory +
      + (MB) +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + status +
      +
      +
      +
      +
      + cputime +
      + (s) +
      +
      +
      +
      +
      + walltime +
      + (s) +
      +
      +
      +
      +
      + memory +
      + (MB) +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + all results + +
      + correct results + +
      + correct true + +
      + correct false + +
      + incorrect results + +
      + incorrect true + +
      + incorrect false + +
      +
      +

      + Generated by + + BenchExec (test) + +

      +
      +`; + +exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` +
      +

      + Benchmark Setup +

      +
      +
      + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + Tool + + + + CPAchecker + + 1.4-svn 15944M + + + CPAchecker + + 1.4-svn 15986M + + + CPAchecker + + 1.4-svn 15944M + + + CPAchecker + + 1.4-svn 15986M +
      + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
      + Host + + + tortuga +
      + OS + + + Linux 3.13.0-45-generic x86_64 +
      + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
      + Date of execution + + + 2015-03-03 16:13:02 CET + + 2015-03-03 18:15:20 CET + + 2015-03-03 16:13:02 CET + + 2015-03-03 18:15:20 CET +
      + Run set + + + predicateAnalysis + + predicateAnalysis + + valueAnalysis + + valueAnalysis +
      + Options + + +
        +
          +
        • -
          -
          -
          + -noout + +
        • +
        • -
          + + -setprop log.consoleLevel=WARNING + +
        • +
        • -
          -
          -
          + -predicateAnalysis + +
        • +
        +
      +
      +
        +
          +
        • -
          - - -
          - -
          + -noout + +
        • +
        • -
          - - -
          - -
          + -setprop log.consoleLevel=WARNING + +
        • +
        • -
          - - -
          - - -
          + -predicateAnalysis + +
        • +
        +
      +
      +
        +
          -
          -
          -
          -
          -
          + -noout + + +
        • -
          -
          -
          + -setprop log.consoleLevel=WARNING + +
        • +
        • -
          -
          -
          + -valueAnalysis + +
        • +
        +
      +
      +
        +
          +
        • -
          -
          -
          + -noout + +
        • +
        • -
          -
          -
          + -setprop log.consoleLevel=WARNING + +
        • +
        • + > + + -valueAnalysis + +
        • +
        +
      +
      + + + +
      +
      + className="table-content" + > +
      +
      +
      +
      +
      + status +
      +
      +
      +
      +
      + cputime +
      + (s) +
      +
      +
      +
      +
      + walltime +
      + (s) +
      +
      +
      +
      +
      + memory +
      + (MB) +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      - - +
      +
      +
      +
      +
      + status +
      +
      +
      +
      +
      + cputime +
      + (s) +
      +
      +
      +
      +
      + walltime +
      + (s) +
      +
      +
      +
      +
      + memory +
      + (MB) +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      - - +
      +
      +
      +
      +
      + status +
      +
      +
      +
      +
      + cputime +
      + (s) +
      +
      +
      +
      +
      + walltime +
      + (s) +
      +
      +
      +
      +
      + memory +
      + (MB) +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      - - +
      +
      +
      +
      +
      + status +
      +
      +
      +
      +
      + cputime +
      + (s) +
      +
      +
      +
      +
      + walltime +
      + (s) +
      +
      +
      +
      +
      + memory +
      + (MB) +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      +
      -
      +
      + all results + +
      + local summary + +
      + correct results + +
      + correct true + +
      + correct false + +
      + incorrect results + +
      + incorrect true + +
      + incorrect false + +
      +
      +

      + Generated by + + BenchExec (test) + +

      +
      +`; + +exports[`Render Summary for nan_and_inf.html 1`] = ` +
      +

      + Benchmark Setup +

      +
      +
      + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + Tool + + + + CPAchecker + + 1.7-svn 28500M +
      + Limits + + + timelimit: 900 s, memlimit: 15000 MB, CPU core limit: 2 +
      + Host + + + apollon* +
      + OS + + + Linux 4.4.0-128-generic +
      + System + + + CPU: Intel Xeon E3-1230 v5 @ 3.40 GHz, cores: 8, frequency: 3.8 GHz, Turbo Boost: disabled; RAM: 33553 MB +
      + Date of execution + + + 2018-06-27 14:40:12 CEST +
      + Run set + + + Model-Based-Selection +
      + Options + + +
        +
          -
          -
          -
          -
          -
          -
          -
          -
          -
          - - -
          -
          -
          -
          - - -
          -
          -
          -
          - - -
          -
          -
          -
          -
          -
          -
          + -heap 10000M + + +
        • -
          - - -
          -
        • -
          + -benchmark + + +
        • -
          - - -
          -
        • + + -configselection-heuristic + + +
        +
      +
      + Properties + + + unreach-call +
      + + + +
      +
      - - +
      +
      +
      +
      +
      + status +
      +
      +
      +
      +
      + cputime +
      + (s) +
      +
      +
      +
      +
      + walltime +
      + (s) +
      +
      +
      +
      +
      + memory +
      + (MB) +
      +
      +
      +
      +
      + Aliasing +
      +
      +
      +
      +
      + Arrays +
      +
      +
      +
      +
      + Boolean +
      +
      +
      +
      +
      + Composite types +
      +
      +
      +
      +
      + Floats +
      +
      +
      +
      +
      + Loops +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      +
      -
      -
      -
      -
      +
      + all results + +
      + local summary + +
      + correct results + +
      + correct true + +
      + correct false + +
      + incorrect results + +
      + incorrect true + +
      + incorrect false + +

      Generated by @@ -67881,27 +49022,88 @@ exports[`Render Summary for test.2015-03-03_1613.diff.html 1`] = `

      `; -exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.all-columns.html 1`] = ` +exports[`Render Summary for predicateAnalysis.table.html 1`] = `
      +

      + Benchmark Setup +

      -

      - Benchmark Setup -

      - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
      + + +
      + + + + + - - + - - + - - + - - + - - + - - - - - + - - -
      Tool + 1.4-svn 15944M + + CPAchecker + + 1.4-svn 15986M +
      +
      Limits + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1
      +
      Host + tortuga
      +
      OS + Linux 3.13.0-45-generic x86_64
      +
      System + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB
      +
      Date of execution + 2015-03-03 16:13:02 CET
      - Run set - - predicateAnalysis + 2015-03-03 18:15:20 CET
      - Options +
      + Run set + -
        -
      • - - -noout - -
      • -
      • - - -setprop log.consoleLevel=WARNING - -
      • -
      • - - -predicateAnalysis - -
      • -
      + predicateAnalysis
      - -
      -

      - Statistics -

      -
      -
      -
      -
      -
      -
      -
      -
      - -
      -
      -
      -
      -
      - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
      -
      -
      -
      -
      - - Click here to select columns - -
      -
      -
      - -
      -
      -
      - status -
      -
      -
      -
      -
      - cputime -
      - (s) -
      -
      -
      -
      -
      - walltime -
      - (s) -
      -
      -
      -
      -
      - memory -
      - (MB) -
      -
      -
      -
      -
      - exitcode -
      -
      -
      -
      -
      -
      +
      + Options + + +
        -
        -
        -
        -
        -
        + -noout + + +
      • -
        + + -setprop log.consoleLevel=WARNING + +
      • +
      • -
        -
        -
        + -predicateAnalysis + +
      • +
      + +
      +
        +
          +
        • -
          -
          -
          + -noout + +
        • +
        • -
          -
          -
          + -setprop log.consoleLevel=WARNING + +
        • +
        • + + -predicateAnalysis + +
        • +
        +
      +
      + + + +
      +
      +
      + className="table-content" + > +
      +
      +
      +
      +
      + status +
      +
      +
      +
      +
      + cputime +
      + (s) +
      +
      +
      +
      +
      + walltime +
      + (s) +
      +
      +
      +
      +
      + memory +
      + (MB) +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + className="table-content" + > +
      +
      +
      +
      +
      + status +
      +
      +
      +
      +
      + cputime +
      + (s) +
      +
      +
      +
      +
      + walltime +
      + (s) +
      +
      +
      +
      +
      + memory +
      + (MB) +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      -
      +
      + all results + +
      + local summary + +
      + correct results + +
      + correct true + +
      + correct false + +
      + incorrect results + +
      + incorrect true + +
      + incorrect false + +
      +
      +

      + Generated by + + BenchExec (test) + +

      +
      +`; + +exports[`Render Summary for predicateAnalysis-reverse.table.html 1`] = ` +
      +

      + Benchmark Setup +

      +
      +
      + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + Tool + + + + CPAchecker + + 1.4-svn 15986M + + + CPAchecker + + 1.4-svn 15944M +
      + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
      + Host + + + tortuga +
      + OS + + + Linux 3.13.0-45-generic x86_64 +
      + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
      + Date of execution + + + 2015-03-03 18:15:20 CET + + 2015-03-03 16:13:02 CET +
      + Run set + + + predicateAnalysis + + predicateAnalysis +
      + Options + + +
        +
          -
          -
          -
          -
          + -noout + + +
        • -
          + + -setprop log.consoleLevel=WARNING + +
        • +
        • -
          - - -
          -
        • -
          + -predicateAnalysis + + +
        +
      +
      +
        +
          +
        • -
          -
          -
          + -noout + +
        • +
        • -
          -
          -
          + -setprop log.consoleLevel=WARNING + +
        • +
        • + + -predicateAnalysis + +
        • +
        +
      +
      + + + +
      +
      +
      - - +
      +
      +
      +
      +
      + status +
      +
      +
      +
      +
      + cputime +
      + (s) +
      +
      +
      +
      +
      + walltime +
      + (s) +
      +
      +
      +
      +
      + memory +
      + (MB) +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      - - +
      +
      +
      +
      +
      + status +
      +
      +
      +
      +
      + cputime +
      + (s) +
      +
      +
      +
      +
      + walltime +
      + (s) +
      +
      +
      +
      +
      + memory +
      + (MB) +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      + all results + +
      + local summary + +
      + correct results + +
      + correct true + +
      + correct false + +
      + incorrect results + +
      + incorrect true + +
      + incorrect false + +
      +
      +

      + Generated by + + BenchExec (test) + +

      +
      +`; + +exports[`Render Summary for rows-with-scores.html 1`] = ` +
      +
      +

      + Benchmark Setup +

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + Tool + +
      + Limits + + timelimit: -, memlimit: -, CPU core limit: - +
      + Host + + t460p +
      + OS + + Linux-5.0.0-37-generic-x86_64-with-Ubuntu-18.04-bionic + + Linux-5.3.0-53-generic-x86_64-with-Ubuntu-18.04-bionic +
      + System + + CPU: Intel Core i5-6440HQ CPU @ 2.60GHz, cores: 4, frequency: 3500 MHz, Turbo Boost: enabled; RAM: 33587 MB + + CPU: Intel Core i5-6440HQ CPU @ 2.60GHz, cores: 4, frequency: 3500 MHz, Turbo Boost: enabled; RAM: 33537 MB +
      + Date of execution + + 2019-12-20 15:32:33 CET + + 2020-06-10 09:17:06 CEST +
      + Run set + + 0 + + 0 +
      + Options + +
        +
      • + + true + +
      • +
      +
      +
        +
      • + + true + +
      • +
      +
      + Properties + + test +
      +
      +
      +

      + Statistics +

      +
      +
      +
      +
      +
      +
      + +
      + + DummyTool 2019-12-20 15:32:33 CET 0 +
      -
      -
      -
      -
      -
      + />
      + + DummyTool 2020-06-10 09:17:06 CEST 0 +
      -
      -
      -
      + + Click here to select columns +
      + > + +
      + status +
      +
      + cputime +
      + (s) +
      +
      + walltime +
      + (s) +
      +
      + memory +
      + (MB) +
      +
      -
      -
      -
      -
      + className="header-data clickable" + title="Show Quantile Plot of this column" + > + cpuenergy +
      + (J) +
      + > + +
      + status +
      +
      + cputime +
      + (s) +
      +
      + walltime +
      + (s) +
      +
      + memory +
      + (MB) +
      +
      + cpuenergy +
      + (J) +
      +
      +
      +
      @@ -69086,8 +54910,8 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.all-c >
      -
      -
      -
      -
      -
      @@ -69335,7 +55124,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.all-c Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "252px", + "minWidth": "404px", } } > @@ -69358,8 +55147,8 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.all-c >
      + > + - +
      - - -
      + dangerouslySetInnerHTML={".301  "} + />
      - - -
      + dangerouslySetInnerHTML={"1.17   "} + />
      - - -
      -
      -
      -
      -
      -
      -
      -
      -
      -

      - Generated by - - BenchExec (test) - -

      -
      -`; - -exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.correct-only.html 1`] = ` -
      -
      -

      - Benchmark Setup -

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      - Tool - - - CPAchecker - - 1.4-svn 15944M -
      - Limits - - timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 -
      - Host - - tortuga -
      - OS - - Linux 3.13.0-45-generic x86_64 -
      - System - - CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB -
      - Date of execution - - 2015-03-03 16:13:02 CET -
      - Run set - - predicateAnalysis -
      - Options - -
        -
      • - - -noout - -
      • -
      • - - -setprop log.consoleLevel=WARNING - -
      • -
      • - - -predicateAnalysis - -
      • -
      -
      -
      -
      -

      - Statistics -

      -
      -
      -
      -
      -
      -
      -
      -
      - -
      -
      - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
      -
      -
      -
      -
      - - Click here to select columns - -
      -
      -
      - -
      -
      - status + -
      -
      - cputime -
      - (s) -
      -
      - walltime -
      - (s) -
      -
      - memory -
      - (MB) + -
      -
      +
      +
      -
      -
      @@ -69980,7 +55380,8 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.corre >
      -
      -
      +
      +
      +
      @@ -70192,7 +55594,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.corre Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "222px", + "minWidth": "404px", } } > @@ -70245,7 +55647,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.corre >
      -
      -
      +
      +
      +
      @@ -70428,7 +55831,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.corre Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "222px", + "minWidth": "404px", } } > @@ -70451,8 +55854,8 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.corre >
      -
      -
      + className="cell" + > + - +
      +
      +
      + - +
      +
      @@ -70687,8 +56091,8 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.corre >
      - - -
      + dangerouslySetInnerHTML={".0670"} + title="avg: 0.00745, max: 0.0157, median: 0.00667, min: 0.00267, stdev: 0.00382" + />
      - - -
      + dangerouslySetInnerHTML={".0490"} + title="avg: 0.00545, max: 0.00545, median: 0.00545, min: 0.00545, stdev: 0.000" + />
      - - -
      + dangerouslySetInnerHTML={"2.76"} + title="avg: 0.307, max: 0.307, median: 0.307, min: 0.307, stdev: 0.000" + />
      -
      -
      -
      -
      -
      -
      -
      -

      - Generated by - - BenchExec (test) - -

      -
      -`; - -exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.custom-score.html 1`] = ` -
      -
      -

      - Benchmark Setup -

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      - Tool - - - CPAchecker - - 1.4-svn 15944M -
      - Limits - - timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 -
      - Host - - tortuga -
      - OS - - Linux 3.13.0-45-generic x86_64 -
      - System - - CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB -
      - Date of execution - - 2015-03-03 16:13:02 CET -
      - Run set - - predicateAnalysis.0 -
      - Options - -
        -
      • - - -noout - -
      • -
      • - - -setprop log.consoleLevel=WARNING - -
      • -
      • - - -predicateAnalysis - -
      • -
      -
      - Properties - - unreach-label -
      -
      -
      -

      - Statistics -

      -
      -
      -
      -
      -
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      -
      - -
      - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis.0 -
      +
      +
      +
      -
      -
      + > +
      +
      - - Click here to select columns -
      +
      +
      +
      - -
      + />
      - status -
      -
      - cputime -
      - (s) -
      -
      - walltime -
      - (s) -
      -
      - memory -
      - (MB) -
      -
      - score -
      -
      -
      -
      @@ -71335,7 +56565,8 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.custo >
      + > + - +
      + > + - +
      + > + - +
      +
      + - +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      @@ -71470,8 +56802,8 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.custo >
      + > + - +
      + > + - +
      -
      -
      -
      -
      -
      -
      -
      + > +
      + - +
      +
      + className="cell" + > + - +
      + > + - +
      + > + - +
      + > + - +
      + > + - +
      +
      +
      +
      +
      +
      +
      +

      + Generated by + + BenchExec (test) + +

      +
      +`; + +exports[`Render Summary for simple-table-with-columns.table.html 1`] = ` +
      +

      + Benchmark Setup +

      +
      +
      + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + Tool + + + + CPAchecker + + 1.4-svn 15944M +
      + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
      + Host + + + tortuga +
      + OS + + + Linux 3.13.0-45-generic x86_64 +
      + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
      + Date of execution + + + 2015-03-03 16:13:02 CET +
      + Run set + + + predicateAnalysis +
      + Options + + +
        +
          +
        • + + -noout + +
        • +
        • + + -setprop log.consoleLevel=WARNING + +
        • +
        • + + -predicateAnalysis + +
        • +
        +
      +
      + + + +
      +
      +
      +
      +
      +
      +
      +
      + status +
      +
      +
      +
      +
      + CPU Time +
      + (s) +
      +
      +
      +
      +
      + setup +
      + (s) +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + all results + +
      + local summary + +
      + correct results + +
      + correct true + +
      + correct false + +
      + incorrect results + +
      + incorrect true + +
      + incorrect false + +
      +
      +

      + Generated by + + BenchExec (test) + +

      +
      +`; + +exports[`Render Summary for simple-table-with-links.table.html 1`] = ` +
      +

      + Benchmark Setup +

      +
      +
      + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + Tool + + + + CPAchecker + + 1.4-svn 15944M +
      + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
      + Host + + + tortuga +
      + OS + + + Linux 3.13.0-45-generic x86_64 +
      + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
      + Date of execution + + + 2015-03-03 16:13:02 CET +
      + Run set + + + predicateAnalysis +
      + Options + + +
        +
          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          + -noout + + +
        • -
          -
          -
          + -setprop log.consoleLevel=WARNING + +
        • +
        • -
          -
          + + -predicateAnalysis + +
        • +
        +
      +
      + + + +
      +
      + className="table-content" + > +
      +
      +
      +
      +
      + status +
      +
      +
      +
      +
      + cputime +
      + (s) +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      -
      +
      + all results + +
      + local summary + +
      + correct results + +
      + correct true + +
      + correct false + +
      + incorrect results + +
      + incorrect true + +
      + incorrect false + +
      +
      +

      + Generated by + + BenchExec (test) + +

      +
      +`; + +exports[`Render Summary for simple-table-with-numberOfDigits.table.html 1`] = ` +
      +

      + Benchmark Setup +

      +
      +
      + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + Tool + + + + CPAchecker + + 1.4-svn 15944M +
      + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
      + Host + + + tortuga +
      + OS + + + Linux 3.13.0-45-generic x86_64 +
      + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
      + Date of execution + + + 2015-03-03 16:13:02 CET +
      + Run set + + + predicateAnalysis +
      + Options + + +
        +
          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          + -noout + + +
        • -
          -
          -
          + -setprop log.consoleLevel=WARNING + +
        • +
        • -
          -
          + + -predicateAnalysis + +
        • +
        +
      +
      + + + +
      +
      + className="table-content" + > +
      +
      +
      +
      +
      + status +
      +
      +
      +
      +
      + cputime +
      + (s) +
      +
      +
      +
      +
      + walltime +
      + (s) +
      +
      +
      +
      +
      + memory +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      -
      +
      + all results + +
      + local summary + +
      + correct results + +
      + correct true + +
      + correct false + +
      + incorrect results + +
      + incorrect true + +
      + incorrect false + +
      +
      +

      + Generated by + + BenchExec (test) + +

      +
      +`; + +exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` +
      +

      + Benchmark Setup +

      +
      +
      + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + Tool + + + + CPAchecker + + 1.4-svn 15944M +
      + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
      + Host + + + tortuga +
      + OS + + + Linux 3.13.0-45-generic x86_64 +
      + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
      + Date of execution + + + 2015-03-03 16:13:02 CET +
      + Run set + + + predicateAnalysis +
      + Options + + +
        +
          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          + -noout + + +
        • -
          -
          -
          + -setprop log.consoleLevel=WARNING + +
        • +
        • -
          -
          -
        • + + -predicateAnalysis + + +
        +
      +
      + + + +
      -
      -
      -
      -
      + className="table-content" + > +
      +
      +
      +
      +
      + status +
      +
      +
      +
      +
      + cputime +
      + (ms) +
      +
      +
      +
      +
      + cputime-h +
      + (h) +
      +
      +
      +
      +
      + walltime +
      + (s) +
      +
      +
      +
      +
      + walltime +
      + (ns) +
      +
      +
      +
      +
      + walltime +
      + (Gs) +
      +
      +
      +
      +
      + memory +
      + (MB) +
      +
      +
      +
      +
      + memory-GB +
      + (GB) +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      + all results + +
      + local summary + +
      + correct results + +
      + correct true + +
      + correct false + +
      + incorrect results + +
      + incorrect true + +
      + incorrect false + +
      +
      +

      + Generated by + + BenchExec (test) + +

      +
      +`; + +exports[`Render Summary for smt.diff.html 1`] = ` +
      +

      + Benchmark Setup +

      +
      +
      + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + Tool + + + MathSAT5.3.5 + + SMTInterpol2.1-183-g4d3bb9f +
      + Limits + + + timelimit: 10 s, memlimit: 100 MB, CPU core limit: 1 +
      + Host + + + tortuga +
      + OS + + + Linux 3.13.0-53-generic x86_64 +
      + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389436 kB +
      + Date of execution + + + 2015-05-27 10:04:55 CEST + + 2015-05-27 10:04:27 CEST +
      + Run set + + + mathsat + + smtinterpol +
      + Properties + + + sat +
      + + + +
      +
      - - +
      +
      +
      +
      +
      + status +
      +
      +
      +
      +
      + cputime +
      + (s) +
      +
      +
      +
      +
      + walltime +
      + (s) +
      +
      +
      +
      +
      + memory +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      - - +
      +
      +
      +
      +
      + status +
      +
      +
      +
      +
      + cputime +
      + (s) +
      +
      +
      +
      +
      + walltime +
      + (s) +
      +
      +
      +
      +
      + memory +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + all results + +
      +
      +

      + Generated by + + BenchExec (test) + +

      +
      +`; + +exports[`Render Summary for smt.table.html 1`] = ` +
      +

      + Benchmark Setup +

      +
      +
      + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + Tool + + + MathSAT5.3.5 + + SMTInterpol2.1-183-g4d3bb9f +
      + Limits + + + timelimit: 10 s, memlimit: 100 MB, CPU core limit: 1 +
      + Host + + + tortuga +
      + OS + + + Linux 3.13.0-53-generic x86_64 +
      + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389436 kB +
      + Date of execution + + + 2015-05-27 10:04:55 CEST + + 2015-05-27 10:04:27 CEST +
      + Run set + + + mathsat + + smtinterpol +
      + Properties + + + sat +
      + + + +
      +
      - - +
      +
      +
      +
      +
      + status +
      +
      +
      +
      +
      + cputime +
      + (s) +
      +
      +
      +
      +
      + walltime +
      + (s) +
      +
      +
      +
      +
      + memory +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      - - +
      +
      +
      +
      +
      + status +
      +
      +
      +
      +
      + cputime +
      + (s) +
      +
      +
      +
      +
      + walltime +
      + (s) +
      +
      +
      +
      +
      + memory +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      +
      -
      -
      -
      -
      +
      + all results + +
      + local summary + +

      Generated by @@ -72276,7 +65847,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.custo

      `; -exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.html 1`] = ` +exports[`Render Summary for task-def-files.table.html 1`] = `
      @@ -72296,16 +65867,9 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.html - - CPAchecker - - 1.4-svn 15944M + DummyTool - timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 + timelimit: -, memlimit: -, CPU core limit: - - tortuga + t460p - Linux 3.13.0-45-generic x86_64 + Linux-5.0.0-37-generic-x86_64-with-Ubuntu-18.04-bionic + + + Linux-5.3.0-53-generic-x86_64-with-Ubuntu-18.04-bionic - CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB + CPU: Intel Core i5-6440HQ CPU @ 2.60GHz, cores: 4, frequency: 3500 MHz, Turbo Boost: enabled; RAM: 33587 MB + + + CPU: Intel Core i5-6440HQ CPU @ 2.60GHz, cores: 4, frequency: 3500 MHz, Turbo Boost: enabled; RAM: 33537 MB - 2015-03-03 16:13:02 CET + 2019-12-20 15:32:33 CET + + + 2020-06-10 09:17:06 CEST - predicateAnalysis + 0 + + + 0
      • - -noout - -
      • -
      • - - -setprop log.consoleLevel=WARNING + true
      • +
      + + +
      • - -predicateAnalysis + true
      + + + Properties + + + test + +
      @@ -72438,7 +66041,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.html role="table" style={ Object { - "minWidth": "222px", + "minWidth": "404px", } } > @@ -72452,7 +66055,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.html Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "222px", + "minWidth": "404px", } } > @@ -72514,23 +66117,68 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.html />
      - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis + DummyTool 2019-12-20 15:32:33 CET 0 + +
      +
      +
      +
      + + DummyTool 2020-06-10 09:17:06 CEST 0
      @@ -72736,6 +66384,218 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.html } />
      +
      +
      + cpuenergy +
      + (J) +
      +
      +
      +
      + +
      +
      +
      + status +
      +
      +
      +
      +
      + cputime +
      + (s) +
      +
      +
      +
      +
      + walltime +
      + (s) +
      +
      +
      +
      +
      + memory +
      + (MB) +
      +
      +
      +
      +
      + cpuenergy +
      + (J) +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      @@ -72772,7 +66869,8 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.html >
      + > + - +
      + > + - +
      -
      -
      +
      +
      +
      @@ -73036,7 +67132,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.html >
      -
      -
      + className="cell" + > + - +
      +
      +
      +
      @@ -73219,7 +67316,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.html Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "222px", + "minWidth": "404px", } } > @@ -73242,8 +67339,8 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.html >
      -
      -
      + className="cell" + > + - +
      +
      +
      +
      @@ -73455,7 +67553,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.html Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "222px", + "minWidth": "404px", } } > @@ -73478,8 +67576,8 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.html >
      + > + - +
      + > + - +
      -
      -
      -
      -
      + > +
      + - +
      +
      + className="cell" + > + - +
      -
      -
      -
      -
      -
      -
      -
      -

      - Generated by - - BenchExec (test) - -

      -
      -`; - -exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.html 1`] = ` -
      -
      -

      - Benchmark Setup -

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      - Tool - - - CPAchecker - - 1.4-svn 15944M -
      - Limits - - timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 -
      - Host - - tortuga -
      - OS - - Linux 3.13.0-45-generic x86_64 -
      - System - - CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB -
      - Date of execution - - 2015-03-03 16:13:02 CET -
      - Run set - - valueAnalysis -
      - Options - -
        -
      • - - -noout - -
      • -
      • - - -setprop log.consoleLevel=WARNING - -
      • -
      • - - -valueAnalysis - -
      • -
      -
      -
      -
      -

      - Statistics -

      -
      -
      -
      -
      -
      -
      -
      - -
      -
      -
      -
      - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
      + - +
      - - Click here to select columns -
      - -
      + />
      - status -
      -
      - cputime -
      - (s) -
      -
      - walltime -
      - (s) -
      -
      - memory -
      - (MB) -
      -
      -
      -
      -
      -
      +
      +
      +
      @@ -74294,7 +68027,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.html 1`] Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "222px", + "minWidth": "404px", } } > @@ -74317,8 +68050,8 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.html 1`] >
      - - -
      + dangerouslySetInnerHTML={4} + />
      - - -
      + dangerouslySetInnerHTML={"1.37 "} + title="avg: 0.343, max: 0.381, median: 0.344, min: 0.303, stdev: 0.0379" + />
      -
      -
      +
      +
      +
      @@ -74529,7 +68264,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.html 1`] Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "222px", + "minWidth": "404px", } } > @@ -74552,8 +68287,8 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.html 1`] >
      -
      -
      + className="cell" + > + - +
      + > + - +
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      @@ -74863,9 +68481,9 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.html 1`] style={ Object { "boxSizing": "border-box", - "flex": "68 0 auto", + "flex": "92 0 auto", "minWidth": "30px", - "width": "68px", + "width": "92px", } } > @@ -74883,7 +68501,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.html 1`] Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "222px", + "minWidth": "404px", } } > @@ -74906,8 +68524,8 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.html 1`] >
      -
      -
      + className="cell" + > + - +
      +
      +
      + - +
      +
      @@ -75132,7 +68751,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.html 1`]
      `; -exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.html 1`] = ` +exports[`Render Summary for test.2015-03-03_1613.diff.html 1`] = `
      @@ -75152,7 +68771,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 @@ -75185,7 +68804,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm tortuga @@ -75198,7 +68817,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm Linux 3.13.0-45-generic x86_64 @@ -75211,7 +68830,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB @@ -75224,7 +68843,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm 2015-03-03 16:13:02 CET @@ -75235,6 +68854,12 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm Run set + + predicateAnalysis + Options + +
        +
      • + + -noout + +
      • +
      • + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -predicateAnalysis + +
      • +
      + @@ -75308,7 +68955,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "222px", + "minWidth": "344px", } } > @@ -75368,6 +69015,51 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm } } /> +
      + + CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis + +
      +
      +
      @@ -75558,516 +69250,192 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm } } /> -
      -
      -
      - memory -
      - (MB) -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      - - -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      - - -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      +
      + memory +
      + (MB) +
      +
      + > + +
      + status +
      +
      - - + cputime +
      + (s)
      +
      - - + walltime +
      + (s)
      +
      - - + memory +
      + (MB)
      +
      +
      +
      @@ -76098,8 +69466,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm >
      -
      -
      -
      -
      -
      - - -
      + dangerouslySetInnerHTML={"4.32"} + title="avg: 2.16, max: 2.20, median: 2.16, min: 2.12, stdev: 0.0433" + />
      - - -
      + dangerouslySetInnerHTML={"4.34"} + title="avg: 2.17, max: 2.21, median: 2.17, min: 2.13, stdev: 0.0427" + />
      - - -
      + dangerouslySetInnerHTML={"264"} + title="avg: 132, max: 134, median: 132, min: 130, stdev: 1.64" + />
      @@ -76334,8 +69666,8 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm >
      - - -
      + dangerouslySetInnerHTML={"4.29"} + title="avg: 2.14, max: 2.23, median: 2.14, min: 2.06, stdev: 0.0854" + />
      - - -
      + dangerouslySetInnerHTML={"4.30"} + title="avg: 2.15, max: 2.24, median: 2.15, min: 2.07, stdev: 0.0853" + />
      - - -
      -
      -
      -
      -
      -
      - - -
      + dangerouslySetInnerHTML={"2.12"} + title="avg: 2.12, max: 2.12, median: 2.12, min: 2.12, stdev: 0.000" + />
      - - -
      + dangerouslySetInnerHTML={"2.13"} + title="avg: 2.13, max: 2.13, median: 2.13, min: 2.13, stdev: 0.000" + />
      -
      - - -
      -
      -
      -
      -
      -
      -
      -
      -
      -

      - Generated by - - BenchExec (test) - -

      -
      -`; - -exports[`Render Summary for test.2015-03-03_1613.table.html 1`] = ` -
      -
      -

      - Benchmark Setup -

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      - Tool - - - CPAchecker - - 1.4-svn 15944M -
      - Limits - - timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 -
      - Host - - tortuga -
      - OS - - Linux 3.13.0-45-generic x86_64 -
      - System - - CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB -
      - Date of execution - - 2015-03-03 16:13:02 CET -
      - Run set - - predicateAnalysis - - valueAnalysis -
      - Options - -
        -
      • - - -noout - -
      • -
      • - - -setprop log.consoleLevel=WARNING - -
      • -
      • - - -predicateAnalysis - -
      • -
      -
      -
        -
      • - - -noout - -
      • -
      • - - -setprop log.consoleLevel=WARNING - -
      • -
      • - - -valueAnalysis - -
      • -
      -
      -
      -
      -

      - Statistics -

      -
      -
      -
      -
      -
      + } + > +
      +
      +
      -
      - -
      - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis -
      +
      +
      +
      +
      +
      +
      +
      +
      +
      - +
      +
      +
      - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - + - +
      +
      +
      + - +
      +
      +
      + } + > +
      + - +
      - - Click here to select columns -
      - -
      + />
      - status -
      -
      - cputime -
      - (s) + -
      -
      - walltime -
      - (s) + -
      -
      - memory -
      - (MB) + -
      -
      - -
      + />
      - status -
      -
      - cputime -
      - (s) -
      -
      - walltime -
      - (s) -
      -
      - memory -
      - (MB) -
      -
      -
      -
      + > + - +
      + > + - +
      + > + - +
      - - -
      + dangerouslySetInnerHTML={1} + />
      - - -
      + dangerouslySetInnerHTML={"128"} + title="avg: 128, max: 128, median: 128, min: 128, stdev: 0.000" + />
      - - -
      + dangerouslySetInnerHTML={0} + />
      + > + - +
      + > + - +
      + > + - +
      + > + - +
      + > + - +
      + > + - +
      + > + - +
      + > + - +
      +
      +
      +
      +
      +
      +
      +

      + Generated by + + BenchExec (test) + +

      +
      +`; + +exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.all-columns.html 1`] = ` +
      +

      + Benchmark Setup +

      +
      +
      + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + Tool + + + + CPAchecker + + 1.4-svn 15944M +
      + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
      + Host + + + tortuga +
      + OS + + + Linux 3.13.0-45-generic x86_64 +
      + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
      + Date of execution + + + 2015-03-03 16:13:02 CET +
      + Run set + + + predicateAnalysis +
      + Options + + +
        +
          +
        • + + -noout + +
        • +
        • + + -setprop log.consoleLevel=WARNING + +
        • +
        • + + -predicateAnalysis + +
        • +
        +
      +
      + + + +
      +
      +
      +
      +
      +
      +
      +
      + status +
      +
      +
      +
      +
      + cputime +
      + (s) +
      +
      +
      +
      +
      + walltime +
      + (s) +
      +
      +
      +
      +
      + memory +
      + (MB) +
      +
      +
      +
      +
      + exitcode +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + all results + +
      + local summary + +
      + correct results + +
      + correct true + +
      + correct false + +
      + incorrect results + +
      + incorrect true + +
      + incorrect false + +
      +
      +

      + Generated by + + BenchExec (test) + +

      +
      +`; + +exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.correct-only.html 1`] = ` +
      +

      + Benchmark Setup +

      +
      +
      + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + Tool + + + + CPAchecker + + 1.4-svn 15944M +
      + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
      + Host + + + tortuga +
      + OS + + + Linux 3.13.0-45-generic x86_64 +
      + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
      + Date of execution + + + 2015-03-03 16:13:02 CET +
      + Run set + + + predicateAnalysis +
      + Options + + +
        +
          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          + -noout + + +
        • -
          - - -
          -
        • -
          + -setprop log.consoleLevel=WARNING + + +
        • -
          - - -
          -
        • + + -predicateAnalysis + + +
        +
      +
      + + + +
      +
      - - +
      +
      +
      +
      +
      + status +
      +
      +
      +
      +
      + cputime +
      + (s) +
      +
      +
      +
      +
      + walltime +
      + (s) +
      +
      +
      +
      +
      + memory +
      + (MB) +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      +
      -
      +
      + all results + +
      + correct results + +
      + correct true + +
      + correct false + +
      + incorrect results + +
      + incorrect true + +
      + incorrect false + +
      +
      +

      + Generated by + + BenchExec (test) + +

      +
      +`; + +exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.custom-score.html 1`] = ` +
      +

      + Benchmark Setup +

      +
      +
      + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + Tool + + + + CPAchecker + + 1.4-svn 15944M +
      + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
      + Host + + + tortuga +
      + OS + + + Linux 3.13.0-45-generic x86_64 +
      + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
      + Date of execution + + + 2015-03-03 16:13:02 CET +
      + Run set + + + predicateAnalysis.0 +
      + Options + + +
        +
          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          + -noout + + +
        • -
          -
          -
          + -setprop log.consoleLevel=WARNING + +
        • +
        • -
          -
          + + -predicateAnalysis + +
        • +
        +
      +
      + Properties + + + unreach-label +
      + + + +
      +
      + className="table-content" + > +
      +
      +
      +
      +
      + status +
      +
      +
      +
      +
      + cputime +
      + (s) +
      +
      +
      +
      +
      + walltime +
      + (s) +
      +
      +
      +
      +
      + memory +
      + (MB) +
      +
      +
      +
      +
      + score +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      -
      +
      + all results + +
      + correct results + +
      + correct true + +
      + correct false + +
      + incorrect results + +
      + incorrect true + +
      + incorrect false + +
      +
      +

      + Generated by + + BenchExec (test) + +

      +
      +`; + +exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.html 1`] = ` +
      +

      + Benchmark Setup +

      +
      +
      + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + Tool + + + + CPAchecker + + 1.4-svn 15944M +
      + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
      + Host + + + tortuga +
      + OS + + + Linux 3.13.0-45-generic x86_64 +
      + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
      + Date of execution + + + 2015-03-03 16:13:02 CET +
      + Run set + + + predicateAnalysis +
      + Options + + +
        +
          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          -
          + -noout + + +
        • -
          - - -
          -
        • -
          + -setprop log.consoleLevel=WARNING + + +
        • -
          - - -
          -
        • + + -predicateAnalysis + + +
        +
      +
      + + + +
      +
      - - +
      +
      +
      +
      +
      + status +
      +
      +
      +
      +
      + cputime +
      + (s) +
      +
      +
      +
      +
      + walltime +
      + (s) +
      +
      +
      +
      +
      + memory +
      + (MB) +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      +
      -
      +
      + all results + +
      + local summary + +
      + correct results + +
      + correct true + +
      + correct false + +
      + incorrect results + +
      + incorrect true + +
      + incorrect false + +
      +
      +

      + Generated by + + BenchExec (test) + +

      +
      +`; + +exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.html 1`] = ` +
      +`; + +exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.html 1`] = ` +
      +

      + Benchmark Setup +

      +
      +
      + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + Tool + + + + CPAchecker + + 1.4-svn 15944M +
      + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
      + Host + + + tortuga +
      + OS + + + Linux 3.13.0-45-generic x86_64 +
      + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
      + Date of execution + + + 2015-03-03 16:13:02 CET +
      + Run set + + + valueAnalysis +
      + Options + + +
        +
          -
          -
          -
          -
          -
          -
          -
          -
          -
          - - -
          -
          -
          -
          - - -
          -
          -
          -
          - - -
          -
          -
          -
          -
          -
          -
          + -noout + + +
        • -
          - - -
          -
        • -
          + -setprop log.consoleLevel=WARNING + + +
        • -
          - - -
          -
        • + + -valueAnalysis + + +
        +
      +
      + + + +
      +
      - - +
      +
      +
      +
      +
      + status +
      +
      +
      +
      +
      + cputime +
      + (s) +
      +
      +
      +
      +
      + walltime +
      + (s) +
      +
      +
      +
      +
      + memory +
      + (MB) +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      + - +
      +
      +
      +
      +
      -
      -
      -
      -
      +
      + all results + +
      + local summary + +
      + correct results + +
      + correct true + +
      + correct false + +
      + incorrect results + +
      + incorrect true + +
      + incorrect false + +

      Generated by @@ -78870,7 +80547,7 @@ exports[`Render Summary for test.2015-03-03_1613.table.html 1`] = `

      `; -exports[`Render Summary for test.2015-03-03_1613-common.diff.html 1`] = ` +exports[`Render Summary for test.2015-03-03_1613.table.html 1`] = `
      @@ -79614,7 +81291,90 @@ exports[`Render Summary for test.2015-03-03_1613-common.diff.html 1`] = ` >
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + > + - +
      + - +
      +
      +
      +
      +
      + - +
      +
      +
      +
      +
      +
      +
      +
      +
      + - +
      +
      @@ -80016,7 +81892,7 @@ exports[`Render Summary for test.2015-03-03_1613-common.diff.html 1`] = ` >
      -
      -
      -
      -
      -
      - - -
      -
      -
      -
      - - -
      -
      -
      -
      - - -
      -
      -
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      @@ -80981,7 +82857,7 @@ exports[`Render Summary for test.2015-03-03_1613-common.diff.html 1`] = `
      `; -exports[`Render Summary for test.2015-03-03_1613-common.table.html 1`] = ` +exports[`Render Summary for test.2015-03-03_1613-common.diff.html 1`] = `
      @@ -81725,7 +83601,7 @@ exports[`Render Summary for test.2015-03-03_1613-common.table.html 1`] = ` >
      @@ -81926,7 +83802,7 @@ exports[`Render Summary for test.2015-03-03_1613-common.table.html 1`] = ` >
      @@ -82328,7 +84204,7 @@ exports[`Render Summary for test.2015-03-03_1613-common.table.html 1`] = ` >
      + > + - +
      + > + - +
      + > + - +
      @@ -83092,7 +84968,7 @@ exports[`Render Summary for test.2015-03-03_1613-common.table.html 1`] = `
      `; -exports[`Render Summary for test.2015-03-03_1613-correct-only.diff.html 1`] = ` +exports[`Render Summary for test.2015-03-03_1613-common.table.html 1`] = `
      @@ -83836,7 +85712,7 @@ exports[`Render Summary for test.2015-03-03_1613-correct-only.diff.html 1`] = ` >
      @@ -84054,8 +85930,8 @@ exports[`Render Summary for test.2015-03-03_1613-correct-only.diff.html 1`] = ` >
      @@ -84238,7 +86114,7 @@ exports[`Render Summary for test.2015-03-03_1613-correct-only.diff.html 1`] = ` >
      - - -
      + dangerouslySetInnerHTML={"2.19"} + title="avg: 2.19, max: 2.19, median: 2.19, min: 2.19, stdev: 0.000" + />
      - - -
      + dangerouslySetInnerHTML={"2.20"} + title="avg: 2.20, max: 2.20, median: 2.20, min: 2.20, stdev: 0.000" + />
      - - -
      + dangerouslySetInnerHTML={"129"} + title="avg: 129, max: 129, median: 129, min: 129, stdev: 0.000" + />
      @@ -84657,9 +86533,9 @@ exports[`Render Summary for test.2015-03-03_1613-correct-only.diff.html 1`] = ` >
      - - -
      + dangerouslySetInnerHTML={"2.17"} + title="avg: 2.17, max: 2.17, median: 2.17, min: 2.17, stdev: 0.000" + />
      - - -
      + dangerouslySetInnerHTML={"2.18"} + title="avg: 2.18, max: 2.18, median: 2.18, min: 2.18, stdev: 0.000" + />
      - - -
      + dangerouslySetInnerHTML={"128"} + title="avg: 128, max: 128, median: 128, min: 128, stdev: 0.000" + />
      - - -
      + dangerouslySetInnerHTML={"2.17"} + title="avg: 2.17, max: 2.17, median: 2.17, min: 2.17, stdev: 0.000" + />
      - - -
      + dangerouslySetInnerHTML={"2.18"} + title="avg: 2.18, max: 2.18, median: 2.18, min: 2.18, stdev: 0.000" + />
      - - -
      + dangerouslySetInnerHTML={"128"} + title="avg: 128, max: 128, median: 128, min: 128, stdev: 0.000" + />
      `; -exports[`Render Summary for test.2015-03-03_1613-correct-only.table.html 1`] = ` +exports[`Render Summary for test.2015-03-03_1613-correct-only.diff.html 1`] = `
      @@ -85933,207 +87809,6 @@ exports[`Render Summary for test.2015-03-03_1613-correct-only.table.html 1`] = ` } } /> -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      @@ -86550,7 +88426,7 @@ exports[`Render Summary for test.2015-03-03_1613-correct-only.table.html 1`] = ` >
      + > + - +
      + > + - +
      + > + - +
      @@ -87314,7 +89190,7 @@ exports[`Render Summary for test.2015-03-03_1613-correct-only.table.html 1`] = `
      `; -exports[`Render Summary for test.2015-03-03_1613-reverse.diff.html 1`] = ` +exports[`Render Summary for test.2015-03-03_1613-correct-only.table.html 1`] = `
      @@ -87421,13 +89297,13 @@ exports[`Render Summary for test.2015-03-03_1613-reverse.diff.html 1`] = ` className="header__tool-rowfalse" colSpan={4} > - valueAnalysis + predicateAnalysis - predicateAnalysis + valueAnalysis
    • - -valueAnalysis + -predicateAnalysis
    @@ -87475,7 +89351,7 @@ exports[`Render Summary for test.2015-03-03_1613-reverse.diff.html 1`] = `
  • - -predicateAnalysis + -valueAnalysis
  • @@ -87594,9 +89470,9 @@ exports[`Render Summary for test.2015-03-03_1613-reverse.diff.html 1`] = ` > - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis + CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis
    - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis + CPAchecker 2015-03-03 16:13:02 CET valueAnalysis
    @@ -88259,7 +90135,7 @@ exports[`Render Summary for test.2015-03-03_1613-reverse.diff.html 1`] = ` >
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    - - -
    + dangerouslySetInnerHTML={"2.19"} + title="avg: 2.19, max: 2.19, median: 2.19, min: 2.19, stdev: 0.000" + />
    - - -
    + dangerouslySetInnerHTML={"2.20"} + title="avg: 2.20, max: 2.20, median: 2.20, min: 2.20, stdev: 0.000" + />
    - - -
    + dangerouslySetInnerHTML={"129"} + title="avg: 129, max: 129, median: 129, min: 129, stdev: 0.000" + />
    @@ -88631,8 +90708,8 @@ exports[`Render Summary for test.2015-03-03_1613-reverse.diff.html 1`] = ` >
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    + > + - +
    + > + - +
    + > + - +
    `; -exports[`Render Summary for test.2015-03-03_1613-reverse.table.html 1`] = ` +exports[`Render Summary for test.2015-03-03_1613-reverse.diff.html 1`] = `
    @@ -90169,7 +92045,7 @@ exports[`Render Summary for test.2015-03-03_1613-reverse.table.html 1`] = ` >
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    - - -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    @@ -90870,126 +92547,8 @@ exports[`Render Summary for test.2015-03-03_1613-reverse.table.html 1`] = ` >
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    `; -exports[`Render Summary for test-error.2015-03-03_1613.diff.html 1`] = ` +exports[`Render Summary for test.2015-03-03_1613-reverse.table.html 1`] = `
    @@ -91842,13 +93519,13 @@ exports[`Render Summary for test-error.2015-03-03_1613.diff.html 1`] = ` className="header__tool-rowfalse" colSpan={4} > - predicateAnalysis + valueAnalysis - valueAnalysis + predicateAnalysis
  • - -predicateAnalysis + -valueAnalysis
  • @@ -91896,7 +93573,7 @@ exports[`Render Summary for test-error.2015-03-03_1613.diff.html 1`] = `
  • - -valueAnalysis + -predicateAnalysis
  • @@ -92015,9 +93692,9 @@ exports[`Render Summary for test-error.2015-03-03_1613.diff.html 1`] = ` > - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis + CPAchecker 2015-03-03 16:13:02 CET valueAnalysis
    - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis + CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis
    @@ -92650,8 +94327,8 @@ exports[`Render Summary for test-error.2015-03-03_1613.diff.html 1`] = ` >
    + > + - +
    + > + - +
    + > + - +
    + > + - +
    - - -
    + dangerouslySetInnerHTML={"6.48"} + title="avg: 2.16, max: 2.23, median: 2.19, min: 2.06, stdev: 0.0730" + />
    - - -
    + dangerouslySetInnerHTML={"6.50"} + title="avg: 2.17, max: 2.24, median: 2.20, min: 2.07, stdev: 0.0728" + />
    - - -
    + dangerouslySetInnerHTML={"388"} + title="avg: 129, max: 132, median: 129, min: 126, stdev: 2.46" + />
    @@ -93253,8 +94928,8 @@ exports[`Render Summary for test-error.2015-03-03_1613.diff.html 1`] = ` >
    - - -
    + dangerouslySetInnerHTML={"2.19"} + title="avg: 2.19, max: 2.19, median: 2.19, min: 2.19, stdev: 0.000" + />
    - - -
    + dangerouslySetInnerHTML={"2.20"} + title="avg: 2.20, max: 2.20, median: 2.20, min: 2.20, stdev: 0.000" + />
    - - -
    + dangerouslySetInnerHTML={"129"} + title="avg: 129, max: 129, median: 129, min: 129, stdev: 0.000" + />
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    `; -exports[`Render Summary for test-error.2015-03-03_1613.table.html 1`] = ` +exports[`Render Summary for test-error.2015-03-03_1613.diff.html 1`] = `
    @@ -94576,406 +96452,6 @@ exports[`Render Summary for test-error.2015-03-03_1613.table.html 1`] = ` } } /> -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    @@ -95392,7 +97069,7 @@ exports[`Render Summary for test-error.2015-03-03_1613.table.html 1`] = ` >
    + > + - +
    + > + - +
    + > + - +
    @@ -96156,7 +97833,7 @@ exports[`Render Summary for test-error.2015-03-03_1613.table.html 1`] = `
    `; -exports[`Render Summary for union-table.diff.html 1`] = ` +exports[`Render Summary for test-error.2015-03-03_1613.table.html 1`] = `
    @@ -96900,7 +98577,7 @@ exports[`Render Summary for union-table.diff.html 1`] = ` >
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    @@ -97503,7 +99379,7 @@ exports[`Render Summary for union-table.diff.html 1`] = ` >
    - - -
    + dangerouslySetInnerHTML={"2.19"} + title="avg: 2.19, max: 2.19, median: 2.19, min: 2.19, stdev: 0.000" + />
    - - -
    + dangerouslySetInnerHTML={"2.20"} + title="avg: 2.20, max: 2.20, median: 2.20, min: 2.20, stdev: 0.000" + />
    - - -
    + dangerouslySetInnerHTML={"129"} + title="avg: 129, max: 129, median: 129, min: 129, stdev: 0.000" + />
    @@ -98267,7 +100143,7 @@ exports[`Render Summary for union-table.diff.html 1`] = `
    `; -exports[`Render Summary for union-table.table.html 1`] = ` +exports[`Render Summary for union-table.diff.html 1`] = `
    @@ -99011,7 +100887,7 @@ exports[`Render Summary for union-table.table.html 1`] = ` >
    @@ -99212,7 +101088,7 @@ exports[`Render Summary for union-table.table.html 1`] = ` >
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    @@ -100378,7 +102254,7 @@ exports[`Render Summary for union-table.table.html 1`] = `
    `; -exports[`Render Summary for union-table-duplicate-results.diff.html 1`] = ` +exports[`Render Summary for union-table.table.html 1`] = `
    @@ -100407,7 +102283,7 @@ exports[`Render Summary for union-table-duplicate-results.diff.html 1`] = ` > CPAchecker - [1.4-svn 15944M; 1.4-svn 15986M] + 1.4-svn 15944M - [2015-03-03 16:13:02 CET; 2015-03-03 18:15:20 CET] + 2015-03-03 16:13:02 CET - CPAchecker [2015-03-03 16:13:02 CET; 2015-03-03 18:15:20 CET] predicateAnalysis + CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis
    - CPAchecker [2015-03-03 16:13:02 CET; 2015-03-03 18:15:20 CET] valueAnalysis + CPAchecker 2015-03-03 16:13:02 CET valueAnalysis
    @@ -101323,7 +103199,7 @@ exports[`Render Summary for union-table-duplicate-results.diff.html 1`] = ` >
    @@ -101725,7 +103601,7 @@ exports[`Render Summary for union-table-duplicate-results.diff.html 1`] = ` >
    - - -
    + dangerouslySetInnerHTML={"2.19"} + title="avg: 2.19, max: 2.19, median: 2.19, min: 2.19, stdev: 0.000" + />
    - - -
    + dangerouslySetInnerHTML={"2.20"} + title="avg: 2.20, max: 2.20, median: 2.20, min: 2.20, stdev: 0.000" + />
    - - -
    + dangerouslySetInnerHTML={"129"} + title="avg: 129, max: 129, median: 129, min: 129, stdev: 0.000" + />
    @@ -102489,7 +104365,7 @@ exports[`Render Summary for union-table-duplicate-results.diff.html 1`] = `
    `; -exports[`Render Summary for union-table-duplicate-results.table.html 1`] = ` +exports[`Render Summary for union-table-duplicate-results.diff.html 1`] = `
    @@ -103233,7 +105109,7 @@ exports[`Render Summary for union-table-duplicate-results.table.html 1`] = ` >
    @@ -103434,7 +105310,7 @@ exports[`Render Summary for union-table-duplicate-results.table.html 1`] = ` >
    @@ -103836,7 +105712,7 @@ exports[`Render Summary for union-table-duplicate-results.table.html 1`] = ` >
    + > + - +
    + > + - +
    + > + - +
    @@ -104600,7 +106476,7 @@ exports[`Render Summary for union-table-duplicate-results.table.html 1`] = `
    `; -exports[`Render Summary for union-table-mixed.diff.html 1`] = ` +exports[`Render Summary for union-table-duplicate-results.table.html 1`] = `
    @@ -104629,20 +106505,7 @@ exports[`Render Summary for union-table-mixed.diff.html 1`] = ` > CPAchecker - 1.4-svn 15944M - - - - CPAchecker - - 1.4-svn 15986M + [1.4-svn 15944M; 1.4-svn 15986M] timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 @@ -104666,7 +106529,7 @@ exports[`Render Summary for union-table-mixed.diff.html 1`] = ` tortuga @@ -104679,7 +106542,7 @@ exports[`Render Summary for union-table-mixed.diff.html 1`] = ` Linux 3.13.0-45-generic x86_64 @@ -104692,7 +106555,7 @@ exports[`Render Summary for union-table-mixed.diff.html 1`] = ` CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB @@ -104707,13 +106570,7 @@ exports[`Render Summary for union-table-mixed.diff.html 1`] = ` className="header__tool-rowfalse" colSpan={8} > - 2015-03-03 16:13:02 CET - - - 2015-03-03 18:15:20 CET + [2015-03-03 16:13:02 CET; 2015-03-03 18:15:20 CET] valueAnalysis - - predicateAnalysis - - -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -predicateAnalysis - -
    • -
    - @@ -104837,7 +106666,7 @@ exports[`Render Summary for union-table-mixed.diff.html 1`] = ` role="table" style={ Object { - "minWidth": "466px", + "minWidth": "344px", } } > @@ -104851,7 +106680,7 @@ exports[`Render Summary for union-table-mixed.diff.html 1`] = ` Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "466px", + "minWidth": "344px", } } > @@ -104927,54 +106756,9 @@ exports[`Render Summary for union-table-mixed.diff.html 1`] = ` > - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis + CPAchecker [2015-03-03 16:13:02 CET; 2015-03-03 18:15:20 CET] predicateAnalysis
    - CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis + CPAchecker [2015-03-03 16:13:02 CET; 2015-03-03 18:15:20 CET] valueAnalysis
    @@ -105371,152 +107155,6 @@ exports[`Render Summary for union-table-mixed.diff.html 1`] = ` } />
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    @@ -105582,7 +107220,7 @@ exports[`Render Summary for union-table-mixed.diff.html 1`] = ` >
    +
    +
    +
    +
    +
    -
    -
    -
    -
    -
    +
    +
    +
    +
    +
    + > + - +
    + > + - +
    + > + - +
    @@ -106120,8 +107793,8 @@ exports[`Render Summary for union-table-mixed.diff.html 1`] = ` >
    - - -
    + dangerouslySetInnerHTML={"4.28"} + title="avg: 2.14, max: 2.16, median: 2.14, min: 2.12, stdev: 0.0211" + />
    - - -
    + dangerouslySetInnerHTML={"4.30"} + title="avg: 2.15, max: 2.17, median: 2.15, min: 2.13, stdev: 0.0204" + />
    - - -
    + dangerouslySetInnerHTML={"265"} + title="avg: 132, max: 134, median: 132, min: 131, stdev: 1.23" + /> +
    +
    +
    +
    +
    -
    -
    -
    -
    -
    +
    +
    +
    +
    +
    @@ -106688,8 +108396,8 @@ exports[`Render Summary for union-table-mixed.diff.html 1`] = ` >
    + > + - +
    + > + - +
    + > + - +
    - - -
    + className="cell" + > + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`Render Summary for union-table-mixed.diff.html 1`] = ` +
    +
    +

    + Benchmark Setup +

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + CPAchecker + + 1.4-svn 15944M + + + CPAchecker + + 1.4-svn 15986M +
    + Limits + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + tortuga +
    + OS + + Linux 3.13.0-45-generic x86_64 +
    + System + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + 2015-03-03 16:13:02 CET + + 2015-03-03 18:15:20 CET +
    + Run set + + predicateAnalysis + + valueAnalysis + + predicateAnalysis +
    + Options + +
      +
    • + + -noout + +
    • +
    • + + -setprop log.consoleLevel=WARNING + +
    • +
    • + + -predicateAnalysis + +
    • +
    +
    +
      +
    • + + -noout + +
    • +
    • + + -setprop log.consoleLevel=WARNING + +
    • +
    • + + -valueAnalysis + +
    • +
    +
    +
      +
    • + + -noout + +
    • +
    • + + -setprop log.consoleLevel=WARNING + +
    • +
    • + + -predicateAnalysis + +
    • +
    +
    +
    +
    +

    + Statistics +

    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    -
    - - -
    -
    + />
    -
    - - -
    + CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis + +
    + + CPAchecker 2015-03-03 16:13:02 CET valueAnalysis +
    -
    -
    -
    -
    -
    + />
    + + CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis +
    + + Click here to select columns +
    + > + +
    + status +
    +
    + cputime +
    + (s) +
    +
    + walltime +
    + (s) +
    +
    + memory +
    + (MB) +
    +
    + > + +
    + status +
    +
    - - + cputime +
    + (s)
    +
    - - + walltime +
    + (s)
    +
    - - + memory +
    + (MB)
    +
    + > + +
    + status +
    +
    + cputime +
    + (s) +
    +
    + walltime +
    + (s) +
    +
    -
    +
    + memory +
    + (MB) +
    +
    +
    +
    - - -
    + dangerouslySetInnerHTML={"6.46"} + title="avg: 2.15, max: 2.23, median: 2.17, min: 2.06, stdev: 0.0708" + />
    - - -
    + dangerouslySetInnerHTML={"6.48"} + title="avg: 2.16, max: 2.24, median: 2.18, min: 2.07, stdev: 0.0708" + />
    - - -
    + dangerouslySetInnerHTML={"387"} + title="avg: 129, max: 132, median: 128, min: 126, stdev: 2.53" + />
    - - -
    + dangerouslySetInnerHTML={"4.32"} + title="avg: 2.16, max: 2.20, median: 2.16, min: 2.12, stdev: 0.0433" + />
    - - -
    + dangerouslySetInnerHTML={"4.34"} + title="avg: 2.17, max: 2.21, median: 2.17, min: 2.13, stdev: 0.0427" + />
    - - -
    + dangerouslySetInnerHTML={"264"} + title="avg: 132, max: 134, median: 132, min: 130, stdev: 1.64" + />
    - - -
    + dangerouslySetInnerHTML={"5.66"} + title="avg: 1.89, max: 1.95, median: 1.86, min: 1.85, stdev: 0.0447" + />
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -

    - Generated by - - BenchExec (test) - -

    -
    -`; - -exports[`Render Summary for union-table-mixed.table.html 1`] = ` -
    -
    -

    - Benchmark Setup -

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - Tool - - - CPAchecker - - 1.4-svn 15944M - - - CPAchecker - - 1.4-svn 15986M -
    - Limits - - timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 -
    - Host - - tortuga -
    - OS - - Linux 3.13.0-45-generic x86_64 -
    - System - - CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB -
    - Date of execution - - 2015-03-03 16:13:02 CET - - 2015-03-03 18:15:20 CET -
    - Run set - - predicateAnalysis - - valueAnalysis - - predicateAnalysis -
    - Options - -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -predicateAnalysis - -
    • -
    -
    -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -valueAnalysis - -
    • -
    -
    -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -predicateAnalysis - -
    • -
    -
    -
    -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    + > +
    +
    - - CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis -
    - - Click here to select columns -
    - -
    + />
    - status -
    -
    - cputime -
    - (s) -
    -
    - walltime -
    - (s) -
    -
    - memory -
    - (MB) -
    -
    - -
    + />
    - status -
    -
    - cputime -
    - (s) -
    -
    - walltime -
    - (s) -
    -
    - memory -
    - (MB) -
    -
    - -
    + />
    - status -
    -
    - cputime -
    - (s) -
    -
    - walltime -
    - (s) -
    -
    - memory -
    - (MB) -
    -
    -
    -
    + > + - +
    + > + - +
    + > + - +
    @@ -108766,8 +110391,8 @@ exports[`Render Summary for union-table-mixed.table.html 1`] = ` >
    - - -
    + dangerouslySetInnerHTML={0} + />
    + > + - +
    + > + - +
    - - -
    + dangerouslySetInnerHTML={1} + />
    - - -
    + dangerouslySetInnerHTML={"2.12"} + title="avg: 2.12, max: 2.12, median: 2.12, min: 2.12, stdev: 0.000" + />
    - - -
    + dangerouslySetInnerHTML={"2.13"} + title="avg: 2.13, max: 2.13, median: 2.13, min: 2.13, stdev: 0.000" + />
    - - -
    + dangerouslySetInnerHTML={"134"} + title="avg: 134, max: 134, median: 134, min: 134, stdev: 0.000" + />
    - - -
    + dangerouslySetInnerHTML={0} + />
    + > + - +
    + > + - +
    + > + - +
    + > + - +
    + > + - +
    @@ -109333,8 +110959,8 @@ exports[`Render Summary for union-table-mixed.table.html 1`] = ` >
    @@ -109617,8 +111243,8 @@ exports[`Render Summary for union-table-mixed.table.html 1`] = ` >
    + > + - +
    + > + - +
    + > + - +
    + > + - +
    + > + - +
    + > + - +
    + > + - +
    + > + - +
    + > + - +
    +
    +
    +
    +
    +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`Render Summary for union-table-mixed.table.html 1`] = ` +
    +
    +

    + Benchmark Setup +

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + CPAchecker + + 1.4-svn 15944M + + + CPAchecker + + 1.4-svn 15986M +
    + Limits + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + tortuga +
    + OS + + Linux 3.13.0-45-generic x86_64 +
    + System + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + 2015-03-03 16:13:02 CET + + 2015-03-03 18:15:20 CET +
    + Run set + + predicateAnalysis + + valueAnalysis + + predicateAnalysis +
    + Options + +
      +
    • + + -noout + +
    • +
    • + + -setprop log.consoleLevel=WARNING + +
    • +
    • + + -predicateAnalysis + +
    • +
    +
    +
      +
    • + + -noout + +
    • +
    • + + -setprop log.consoleLevel=WARNING + +
    • +
    • + + -valueAnalysis + +
    • +
    +
    +
      +
    • + + -noout + +
    • +
    • + + -setprop log.consoleLevel=WARNING + +
    • +
    • + + -predicateAnalysis + +
    • +
    +
    +
    +
    +

    + Statistics +

    +
    +
    +
    +
    +
    +
    + +
    -
    -
    -
    -
    -
    -
    + + CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis +
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    + CPAchecker 2015-03-03 16:13:02 CET valueAnalysis +
    - - -
    -
    -
    -
    - - -
    + />
    -
    -
    -
    -
    -
    -
    + + CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis +
    -
    -
    -
    + + Click here to select columns +
    + > + +
    + status +
    +
    + cputime +
    + (s) +
    +
    + walltime +
    + (s) +
    +
    + memory +
    + (MB) +
    +
    + > + +
    + status +
    +
    - - + cputime +
    + (s)
    +
    - - + walltime +
    + (s)
    +
    - - + memory +
    + (MB)
    +
    + > + +
    + status +
    +
    + cputime +
    + (s) +
    +
    + walltime +
    + (s) +
    +
    + memory +
    + (MB) +
    +
    +
    +
    - - -
    + dangerouslySetInnerHTML={"10.9 "} + title="avg: 2.18, max: 2.27, median: 2.19, min: 2.06, stdev: 0.0719" + />
    - - -
    + dangerouslySetInnerHTML={"11.0 "} + title="avg: 2.19, max: 2.28, median: 2.20, min: 2.07, stdev: 0.0723" + />
    - - -
    + dangerouslySetInnerHTML={"645"} + title="avg: 129, max: 132, median: 129, min: 126, stdev: 1.98" + />
    - - -
    + dangerouslySetInnerHTML={"8.50"} + title="avg: 2.12, max: 2.20, median: 2.14, min: 2.02, stdev: 0.0686" + />
    - - -
    + dangerouslySetInnerHTML={"8.54"} + title="avg: 2.13, max: 2.21, median: 2.15, min: 2.03, stdev: 0.0685" + />
    - - -
    + dangerouslySetInnerHTML={"521"} + title="avg: 130, max: 134, median: 131, min: 126, stdev: 2.65" + />
    - - -
    + dangerouslySetInnerHTML={"9.39"} + title="avg: 1.88, max: 1.95, median: 1.86, min: 1.83, stdev: 0.0426" + />
    - - -
    + dangerouslySetInnerHTML={"9.43"} + title="avg: 1.89, max: 1.96, median: 1.87, min: 1.84, stdev: 0.0431" + />
    - - -
    + dangerouslySetInnerHTML={"648"} + title="avg: 130, max: 131, median: 130, min: 129, stdev: 0.671" + />
    -
    -
    -
    -
    -
    -
    -

    - Generated by - - BenchExec (test) - -

    -
    -`; - -exports[`Render Summary for union-table-multiple-results.diff.html 1`] = ` -
    -
    -

    - Benchmark Setup -

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - Tool - - - CPAchecker - - [1.4-svn 15944M; 1.4-svn 15986M] -
    - Limits - - timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 -
    - Host - - tortuga -
    - OS - - Linux 3.13.0-45-generic x86_64 -
    - System - - CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB -
    - Date of execution - - [2015-03-03 16:13:02 CET; 2015-03-03 18:15:20 CET] -
    - Run set - - predicateAnalysis - - valueAnalysis -
    - Options - -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -predicateAnalysis - -
    • -
    -
    -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -valueAnalysis - -
    • -
    -
    -
    -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    - -
    - - CPAchecker [2015-03-03 16:13:02 CET; 2015-03-03 18:15:20 CET] predicateAnalysis -
    + className="cell" + > + - +
    + > +
    +
    - - CPAchecker [2015-03-03 16:13:02 CET; 2015-03-03 18:15:20 CET] valueAnalysis -
    -
    -
    - - Click here to select columns -
    + className="cell" + > + - +
    - -
    + />
    - status + -
    -
    - cputime -
    - (s) + -
    -
    - walltime -
    - (s) + -
    -
    - memory -
    - (MB) + -
    -
    - -
    + />
    - status + -
    -
    - cputime -
    - (s) -
    -
    - walltime -
    - (s) -
    -
    - memory -
    - (MB) + -
    -
    -
    -
    @@ -111458,7 +113036,8 @@ exports[`Render Summary for union-table-multiple-results.diff.html 1`] = ` >
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    @@ -111635,7 +113297,7 @@ exports[`Render Summary for union-table-multiple-results.diff.html 1`] = ` Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "344px", + "minWidth": "466px", } } > @@ -111658,8 +113320,8 @@ exports[`Render Summary for union-table-multiple-results.diff.html 1`] = ` >
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    @@ -111836,7 +113581,7 @@ exports[`Render Summary for union-table-multiple-results.diff.html 1`] = ` Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "344px", + "minWidth": "466px", } } > @@ -111859,8 +113604,8 @@ exports[`Render Summary for union-table-multiple-results.diff.html 1`] = ` >
    - - -
    + dangerouslySetInnerHTML={"4.28"} + title="avg: 2.14, max: 2.16, median: 2.14, min: 2.12, stdev: 0.0211" + />
    - - -
    + dangerouslySetInnerHTML={"4.30"} + title="avg: 2.15, max: 2.17, median: 2.15, min: 2.13, stdev: 0.0204" + />
    - - -
    + dangerouslySetInnerHTML={"265"} + title="avg: 132, max: 134, median: 132, min: 131, stdev: 1.23" + /> +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    @@ -112060,8 +113888,91 @@ exports[`Render Summary for union-table-multiple-results.diff.html 1`] = ` >
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    @@ -112238,7 +114149,7 @@ exports[`Render Summary for union-table-multiple-results.diff.html 1`] = ` Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "344px", + "minWidth": "466px", } } > @@ -112261,8 +114172,8 @@ exports[`Render Summary for union-table-multiple-results.diff.html 1`] = ` >
    -
    -
    -
    -
    -
    +
    +
    +
    +
    +
    -
    -
    -
    -
    -
    `; -exports[`Render Summary for union-table-multiple-results.table.html 1`] = ` +exports[`Render Summary for union-table-multiple-results.diff.html 1`] = `
    @@ -113388,357 +115264,157 @@ exports[`Render Summary for union-table-multiple-results.table.html 1`] = ` />
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    +
    -
    -
    -
    + className="header-data clickable" + title="Show Quantile Plot of this column" + > + status +
    + cputime +
    + (s) +
    +
    + walltime +
    + (s) +
    +
    + memory +
    + (MB) +
    +
    +
    +
    @@ -113970,8 +115645,8 @@ exports[`Render Summary for union-table-multiple-results.table.html 1`] = ` >
    - - -
    + dangerouslySetInnerHTML={"3.93"} + title="avg: 1.97, max: 2.12, median: 1.97, min: 1.82, stdev: 0.150" + />
    - - -
    + dangerouslySetInnerHTML={"3.95"} + title="avg: 1.98, max: 2.13, median: 1.98, min: 1.82, stdev: 0.151" + />
    - - -
    + dangerouslySetInnerHTML={"265"} + title="avg: 132, max: 134, median: 132, min: 131, stdev: 1.28" + />
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    @@ -114965,7 +116841,7 @@ exports[`Render Summary for union-table-multiple-results.table.html 1`] = `
    `; -exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` +exports[`Render Summary for union-table-multiple-results.table.html 1`] = `
    @@ -114985,7 +116861,7 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` CPAchecker - 1.4-svn 15944M + [1.4-svn 15944M; 1.4-svn 15986M] timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 @@ -115018,7 +116894,7 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` tortuga @@ -115031,7 +116907,7 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` Linux 3.13.0-45-generic x86_64 @@ -115044,7 +116920,7 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB @@ -115057,9 +116933,9 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` - 2015-03-03 16:13:02 CET + [2015-03-03 16:13:02 CET; 2015-03-03 18:15:20 CET] predicateAnalysis + + valueAnalysis + + +
      +
    • + + -noout + +
    • +
    • + + -setprop log.consoleLevel=WARNING + +
    • +
    • + + -valueAnalysis + +
    • +
    + @@ -115127,7 +117031,7 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` role="table" style={ Object { - "minWidth": "222px", + "minWidth": "344px", } } > @@ -115141,7 +117045,7 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "222px", + "minWidth": "344px", } } > @@ -115217,9 +117121,54 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` > - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis + CPAchecker [2015-03-03 16:13:02 CET; 2015-03-03 18:15:20 CET] predicateAnalysis + +
    +
    +
    +
    + + CPAchecker [2015-03-03 16:13:02 CET; 2015-03-03 18:15:20 CET] valueAnalysis
    @@ -115425,129 +117374,158 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` } />
    -
    -
    -
    -
    -
    -
    -
    + > + +
    + status +
    +
    + cputime +
    + (s) +
    +
    + walltime +
    + (s) +
    +
    + memory +
    + (MB) +
    +
    +
    +
    @@ -115578,8 +117556,7 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` >
    -
    -
    -
    -
    -
    @@ -115791,7 +117733,7 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "222px", + "minWidth": "344px", } } > @@ -115814,8 +117756,8 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` >
    -
    -
    -
    -
    -
    @@ -116027,7 +117934,7 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "222px", + "minWidth": "344px", } } > @@ -116050,8 +117957,8 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` >
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -

    - Generated by - - BenchExec (test) - -

    -
    -`; - -exports[`Render Summary for union-table-valueAnalysis.table.html 1`] = ` -
    -
    -

    - Benchmark Setup -

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - Tool - - - CPAchecker - - 1.4-svn 15944M -
    - Limits - - timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 -
    - Host - - tortuga -
    - OS - - Linux 3.13.0-45-generic x86_64 -
    - System - - CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB -
    - Date of execution - - 2015-03-03 16:13:02 CET -
    - Run set - - valueAnalysis -
    - Options - -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -valueAnalysis - -
    • -
    -
    -
    -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    - -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    - walltime -
    - (s) -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    @@ -116866,7 +118336,7 @@ exports[`Render Summary for union-table-valueAnalysis.table.html 1`] = ` Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "222px", + "minWidth": "344px", } } > @@ -116889,8 +118359,8 @@ exports[`Render Summary for union-table-valueAnalysis.table.html 1`] = ` >
    -
    -
    -
    -
    -
    @@ -117125,8 +118560,8 @@ exports[`Render Summary for union-table-valueAnalysis.table.html 1`] = ` >
    -
    -
    -
    -
    -
    @@ -117361,8 +118761,8 @@ exports[`Render Summary for union-table-valueAnalysis.table.html 1`] = ` >
    -
    -
    + />
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + predicateAnalysis +
    + Options + + +
      +
        +
      • -
        + + -noout + +
      • +
      • -
        -
        -
        + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -predicateAnalysis + +
      • +
      +
    +
    + + + +
    +
    +
    - - +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    -
    +
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`Render Summary for union-table-valueAnalysis.table.html 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + valueAnalysis +
    + Options + + +
      +
        +
      • -
        - - -
        - -
        + -noout + +
      • +
      • + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -valueAnalysis + +
      • +
      +
    +
    + + + +
    +
    +
    - - +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    -
    -
    -
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +

    Generated by From 21697e7d69a457d7e360b4eebd6656473470abc6 Mon Sep 17 00:00:00 2001 From: EshaanAgg <96648934+EshaanAgg@users.noreply.github.com> Date: Thu, 25 Jul 2024 20:00:00 +0530 Subject: [PATCH 05/15] improve UI --- .../src/components/StatisticsTable.js | 25 +++++++++++++++++-- .../react-table/src/components/Summary.js | 14 +++++++++-- 2 files changed, 35 insertions(+), 4 deletions(-) diff --git a/benchexec/tablegenerator/react-table/src/components/StatisticsTable.js b/benchexec/tablegenerator/react-table/src/components/StatisticsTable.js index 3d0c631c4..39dc6369d 100644 --- a/benchexec/tablegenerator/react-table/src/components/StatisticsTable.js +++ b/benchexec/tablegenerator/react-table/src/components/StatisticsTable.js @@ -33,6 +33,15 @@ const StatisticsTable = ({ switchToQuantile, tableData, hiddenCols }) => { column={column} className="header-data clickable" title="Show Quantile Plot of this column" + style={{ + cursor: "pointer", + padding: 0, + margin: 0, + alignContent: "center", + alignItems: "center", + backgroundColor: "#EEEEEE", + fontWeight: "bold", + }} onClick={(_) => switchToQuantile(column)} /> ), @@ -100,12 +109,21 @@ const StatisticsTable = ({ switchToQuantile, tableData, hiddenCols }) => {

    {headerGroups.map((headerGroup) => (
    - {headerGroup.headers.map((header) => ( + {headerGroup.headers.map((header, index) => (
    {header.render("Header")} @@ -126,7 +144,7 @@ const StatisticsTable = ({ switchToQuantile, tableData, hiddenCols }) => { const renderTableData = (rows) => (
    - {rows.map((row) => { + {rows.map((row, index) => { prepareRow(row); return (
    @@ -134,6 +152,9 @@ const StatisticsTable = ({ switchToQuantile, tableData, hiddenCols }) => {
    {cell.render("Cell")} diff --git a/benchexec/tablegenerator/react-table/src/components/Summary.js b/benchexec/tablegenerator/react-table/src/components/Summary.js index 3294d02bd..f545f4545 100644 --- a/benchexec/tablegenerator/react-table/src/components/Summary.js +++ b/benchexec/tablegenerator/react-table/src/components/Summary.js @@ -136,7 +136,17 @@ const Summary = ({ }); colArray.push({ - Header: , + Header: ( + + ), id: "columnselect", accessor: "columnselect", statisticTable: true, @@ -155,7 +165,7 @@ const Summary = ({ statisticsRows[stats[stat].id].title + (filtered ? " of selected rows" : ""), stats: true, - width: 250, + minWidth: 300, }); } } From f06a3805c2d47c2a8b96f70fac4af31483c9db14 Mon Sep 17 00:00:00 2001 From: EshaanAgg <96648934+EshaanAgg@users.noreply.github.com> Date: Fri, 26 Jul 2024 16:13:23 +0530 Subject: [PATCH 06/15] handle if all columns are hidden --- .../react-table/src/components/Summary.js | 35 +++++++++++++++---- .../react-table/src/utils/utils.js | 18 ++++++++++ 2 files changed, 47 insertions(+), 6 deletions(-) diff --git a/benchexec/tablegenerator/react-table/src/components/Summary.js b/benchexec/tablegenerator/react-table/src/components/Summary.js index f545f4545..d1ac269c8 100644 --- a/benchexec/tablegenerator/react-table/src/components/Summary.js +++ b/benchexec/tablegenerator/react-table/src/components/Summary.js @@ -10,6 +10,7 @@ import { useFlexLayout, useResizeColumns, useTable } from "react-table"; import { statisticsRows, computeStats } from "../utils/stats"; import { SelectColumnsButton } from "./TableComponents"; import StatisticsTable from "./StatisticsTable"; +import { getCompletelyHiddenRunsetIndices } from "../utils/utils"; const infos = [ "displayName", @@ -89,6 +90,12 @@ const Summary = ({ // are available in order to prevent briefly showing the wrong statistics. const [stats, setStats] = useState(filtered ? [] : defaultStats); + // Get the indexes of the runsets that have all their columns + const hiddenRunsetIdx = useMemo( + () => getCompletelyHiddenRunsetIndices(tools, hiddenCols), + [tools, hiddenCols], + ); + // We want to trigger a re-calculation of our stats whenever data changes. useEffect(() => { const updateStats = async () => { @@ -121,7 +128,7 @@ const Summary = ({ defaultStats, ]); - const BenchmarkCols = useMemo(() => { + const benchmarkColumns = useMemo(() => { let colArray = []; infos.forEach((row) => { @@ -173,7 +180,7 @@ const Summary = ({ return colArray; }, [tableHeader, stats, selectColumn, filtered]); - const BenchmarkData = useMemo(() => { + const benchmarkData = useMemo(() => { let dataArray = []; tools.forEach((runSet, runSetIndex) => { @@ -197,18 +204,22 @@ const Summary = ({ dataArray[index] = { ...dataElement, [tableHeaderRow.id]: cont[0], - colspan: { ...dataElement.colspan, [tableHeaderRow.id]: cont[1] }, + colspan: { + ...dataElement.colspan, + [tableHeaderRow.id]: cont[1], + }, }; }); } }); - return dataArray; - }, [tableHeader, tools, stats]); + console.log(dataArray); + return dataArray.filter((_, index) => !hiddenRunsetIdx.includes(index)); + }, [tableHeader, tools, stats, hiddenRunsetIdx]); const { getTableProps, getTableBodyProps, headers, rows, prepareRow } = useTable( - { columns: BenchmarkCols, data: BenchmarkData }, + { columns: benchmarkColumns, data: benchmarkData }, useFlexLayout, useResizeColumns, ); @@ -302,6 +313,18 @@ const Summary = ({ })} + {/* Add a message to show to the user if some tools are hidden */} + {hiddenRunsetIdx.length ? ( +

    + Runset(s){" "} + {tools + .filter((_, index) => hiddenRunsetIdx.includes(index)) + .map((t) => `"${t.benchmarkname}"`) + .join(",")}{" "} + has(ve) been hidden as you have no selected no statistics columns + for them. Select atleast one to view them as well. +

    + ) : null}

    diff --git a/benchexec/tablegenerator/react-table/src/utils/utils.js b/benchexec/tablegenerator/react-table/src/utils/utils.js index b8b92f4a7..c09ceb41f 100644 --- a/benchexec/tablegenerator/react-table/src/utils/utils.js +++ b/benchexec/tablegenerator/react-table/src/utils/utils.js @@ -1157,6 +1157,23 @@ const getHiddenColIds = (columns) => { return columns.filter((c) => c.hidden).map((c) => c.id); }; +/** + * Returns a list of tool indexes that have been completely hidden by the user + * @param {*} tools + * @param {*} hiddenCols + * @returns Array + */ +const getCompletelyHiddenRunsetIndices = (tools, hiddenCols) => { + return tools + .map((tool, toolIndex) => { + const columnsLength = tool.columns.length; + if (hiddenCols[toolIndex].length === columnsLength) { + return toolIndex; + } else return -1; + }) + .filter((i) => i !== -1); +}; + export { prepareTableData, getRawOrDefault, @@ -1193,4 +1210,5 @@ export { makeFilterDeserializer, safeAdd, getHiddenColIds, + getCompletelyHiddenRunsetIndices, }; From 1eb5437e0696956e2048f987986dfac9bde10b30 Mon Sep 17 00:00:00 2001 From: EshaanAgg <96648934+EshaanAgg@users.noreply.github.com> Date: Sat, 27 Jul 2024 10:44:03 +0530 Subject: [PATCH 07/15] add tooltip --- .../react-table/src/components/Summary.js | 43 ++++++++------ .../react-table/src/components/Tooltip.js | 57 +++++++++++++++++++ 2 files changed, 84 insertions(+), 16 deletions(-) create mode 100644 benchexec/tablegenerator/react-table/src/components/Tooltip.js diff --git a/benchexec/tablegenerator/react-table/src/components/Summary.js b/benchexec/tablegenerator/react-table/src/components/Summary.js index d1ac269c8..5ba26cc69 100644 --- a/benchexec/tablegenerator/react-table/src/components/Summary.js +++ b/benchexec/tablegenerator/react-table/src/components/Summary.js @@ -11,6 +11,7 @@ import { statisticsRows, computeStats } from "../utils/stats"; import { SelectColumnsButton } from "./TableComponents"; import StatisticsTable from "./StatisticsTable"; import { getCompletelyHiddenRunsetIndices } from "../utils/utils"; +import IconWithTooltip from "./Tooltip"; const infos = [ "displayName", @@ -136,7 +137,26 @@ const Summary = ({ if (tableHeaderRow) { colArray.push({ accessor: tableHeaderRow.id, - Header: tableHeaderRow.name, + // If the header is "Tool" and there are hidden runsets, add a hint + Header: + hiddenRunsetIdx.length !== 0 && tableHeaderRow.name === "Tool" ? ( + + {tableHeaderRow.name} + + ) : ( + tableHeaderRow.name + ), sticky: "left", }); } @@ -178,7 +198,7 @@ const Summary = ({ } return colArray; - }, [tableHeader, stats, selectColumn, filtered]); + }, [tableHeader, stats, selectColumn, filtered, hiddenRunsetIdx]); const benchmarkData = useMemo(() => { let dataArray = []; @@ -213,8 +233,10 @@ const Summary = ({ } }); - console.log(dataArray); - return dataArray.filter((_, index) => !hiddenRunsetIdx.includes(index)); + return dataArray.map((d, index) => ({ + hidden: hiddenRunsetIdx.includes(index), + ...d, + })); }, [tableHeader, tools, stats, hiddenRunsetIdx]); const { getTableProps, getTableBodyProps, headers, rows, prepareRow } = @@ -287,6 +309,7 @@ const Summary = ({ style={{ padding: col.id === "columnselect" && 0, margin: 0, + ...(row.original.hidden && { display: "none" }), }} > {col.id === "columnselect" ? ( @@ -313,18 +336,6 @@ const Summary = ({ })} - {/* Add a message to show to the user if some tools are hidden */} - {hiddenRunsetIdx.length ? ( -

    - Runset(s){" "} - {tools - .filter((_, index) => hiddenRunsetIdx.includes(index)) - .map((t) => `"${t.benchmarkname}"`) - .join(",")}{" "} - has(ve) been hidden as you have no selected no statistics columns - for them. Select atleast one to view them as well. -

    - ) : null}

    diff --git a/benchexec/tablegenerator/react-table/src/components/Tooltip.js b/benchexec/tablegenerator/react-table/src/components/Tooltip.js new file mode 100644 index 000000000..ae5b97fae --- /dev/null +++ b/benchexec/tablegenerator/react-table/src/components/Tooltip.js @@ -0,0 +1,57 @@ +import React from "react"; +import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; +import { faInfoCircle } from "@fortawesome/free-solid-svg-icons"; + +const tooltipStyles = { + visibility: "hidden", + width: "250px", + textAlign: "center", + borderRadius: "6px", + padding: "5px", + position: "absolute", + zIndex: 200, + left: "150%", // Position the tooltip to the right of the icon + top: "50%", + transform: "translateY(-50%)", // Center the tooltip vertically + marginLeft: "10px", + opacity: 0, + transition: "opacity 0.3s", + backgroundColor: "#f9f9f9", + color: "#000", + fontSize: "12px", // Smaller font size + fontWeight: "lighter", +}; + +const iconContainerStyles = { + position: "relative", + display: "inline-block", +}; + +const iconStyles = { + cursor: "pointer", +}; + +const IconWithTooltip = ({ message }) => { + return ( +

    { + const tooltip = e.currentTarget.querySelector(".tooltip"); + tooltip.style.visibility = "visible"; + tooltip.style.opacity = 1; + }} + onMouseLeave={(e) => { + const tooltip = e.currentTarget.querySelector(".tooltip"); + tooltip.style.visibility = "hidden"; + tooltip.style.opacity = 0; + }} + > + + + {message} + +
    + ); +}; + +export default IconWithTooltip; From c020aa411e08329a037abc1ee1294e9357d69f79 Mon Sep 17 00:00:00 2001 From: EshaanAgg <96648934+EshaanAgg@users.noreply.github.com> Date: Sat, 27 Jul 2024 11:02:50 +0530 Subject: [PATCH 08/15] add compliance and fix tests --- .../src/components/StatisticsTable.js | 7 + .../react-table/src/components/Summary.js | 4 +- .../react-table/src/components/Tooltip.js | 7 + .../src/tests/StatsCalculation.test.js | 26 +- .../StatsCalculation.test.js.snap | 488594 ++++++++------- .../tests/__snapshots__/Summary.test.js.snap | 182563 +++--- 6 files changed, 377159 insertions(+), 294042 deletions(-) diff --git a/benchexec/tablegenerator/react-table/src/components/StatisticsTable.js b/benchexec/tablegenerator/react-table/src/components/StatisticsTable.js index 39dc6369d..d8a7e6e64 100644 --- a/benchexec/tablegenerator/react-table/src/components/StatisticsTable.js +++ b/benchexec/tablegenerator/react-table/src/components/StatisticsTable.js @@ -1,3 +1,10 @@ +// This file is part of BenchExec, a framework for reliable benchmarking: +// https://github.com/sosy-lab/benchexec +// +// SPDX-FileCopyrightText: 2019-2020 Dirk Beyer +// +// SPDX-License-Identifier: Apache-2.0 + import React, { useMemo } from "react"; import { useFilters, diff --git a/benchexec/tablegenerator/react-table/src/components/Summary.js b/benchexec/tablegenerator/react-table/src/components/Summary.js index 5ba26cc69..43a0e94c5 100644 --- a/benchexec/tablegenerator/react-table/src/components/Summary.js +++ b/benchexec/tablegenerator/react-table/src/components/Summary.js @@ -206,7 +206,9 @@ const Summary = ({ tools.forEach((runSet, runSetIndex) => { dataArray.push({ colspan: { - columnselect: tableHeader.tool.content[runSetIndex][1], + columnselect: tableHeader.tool.content[runSetIndex] + ? tableHeader.tool.content[runSetIndex][1] + : 1, }, columnselect: { runSet, diff --git a/benchexec/tablegenerator/react-table/src/components/Tooltip.js b/benchexec/tablegenerator/react-table/src/components/Tooltip.js index ae5b97fae..bac05642c 100644 --- a/benchexec/tablegenerator/react-table/src/components/Tooltip.js +++ b/benchexec/tablegenerator/react-table/src/components/Tooltip.js @@ -1,3 +1,10 @@ +// This file is part of BenchExec, a framework for reliable benchmarking: +// https://github.com/sosy-lab/benchexec +// +// SPDX-FileCopyrightText: 2019-2020 Dirk Beyer +// +// SPDX-License-Identifier: Apache-2.0 + import React from "react"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { faInfoCircle } from "@fortawesome/free-solid-svg-icons"; diff --git a/benchexec/tablegenerator/react-table/src/tests/StatsCalculation.test.js b/benchexec/tablegenerator/react-table/src/tests/StatsCalculation.test.js index e826caceb..fd43a7188 100644 --- a/benchexec/tablegenerator/react-table/src/tests/StatsCalculation.test.js +++ b/benchexec/tablegenerator/react-table/src/tests/StatsCalculation.test.js @@ -6,7 +6,7 @@ // SPDX-License-Identifier: Apache-2.0 import React from "react"; -import StatisticsTable from "../components/StatisticsTable.js"; +import Summary from "../components/Summary.js"; import fs from "fs"; import renderer from "react-test-renderer"; import { getOverviewProps } from "./utils.js"; @@ -29,12 +29,16 @@ fs.readdirSync(testDir) overviewProps = getOverviewProps(data); await renderer.act(async () => { pythonStatComponent = renderer.create( - , ); @@ -43,12 +47,16 @@ fs.readdirSync(testDir) const jsStats = await computeStats(overviewProps); await renderer.act(async () => { jsStatComponent = renderer.create( - , ); diff --git a/benchexec/tablegenerator/react-table/src/tests/__snapshots__/StatsCalculation.test.js.snap b/benchexec/tablegenerator/react-table/src/tests/__snapshots__/StatsCalculation.test.js.snap index b8c6d4373..b5357b1c2 100644 --- a/benchexec/tablegenerator/react-table/src/tests/__snapshots__/StatsCalculation.test.js.snap +++ b/benchexec/tablegenerator/react-table/src/tests/__snapshots__/StatsCalculation.test.js.snap @@ -2,216004 +2,281710 @@ exports[`StatisticsTable for benchmark-example-true.2019-11-06_0932.results.no options.html Compare StatisticsTable using js-computed stats 1`] = `

    - Statistics + Benchmark Setup

    -
    -
    -
    + -
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    -
    +
    + + DummyTool +
    + Limits + + + timelimit: -, memlimit: -, CPU core limit: - +
    + Host + + + t460p +
    + OS + + + Linux-5.0.0-32-generic-x86_64-with-Ubuntu-18.04-bionic +
    + System + + + CPU: Intel Core i5-6440HQ CPU @ 2.60GHz, cores: 4, frequency: 3500 MHz, Turbo Boost: enabled; RAM: 33587 MB +
    + Date of execution + + + 2019-11-06 09:32:28 CET +
    + Run set + + + no options +
    + Options + + +
      -
      -
      - -
      -
      -
      -
      -
      - - DummyTool 2019-11-06 09:32:28 CET no options - -
      -
      -
      -
      + true + + +
    + +
    + + + +
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    - cputime -
    - (s) +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    + cpuenergy +
    + (J) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    -
    -
    +
    + all results + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for benchmark-example-true.2019-11-06_0932.results.no options.html Compare StatisticsTable using python-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + DummyTool +
    + Limits + + + timelimit: -, memlimit: -, CPU core limit: - +
    + Host + + + t460p +
    + OS + + + Linux-5.0.0-32-generic-x86_64-with-Ubuntu-18.04-bionic +
    + System + + + CPU: Intel Core i5-6440HQ CPU @ 2.60GHz, cores: 4, frequency: 3500 MHz, Turbo Boost: enabled; RAM: 33587 MB +
    + Date of execution + + + 2019-11-06 09:32:28 CET +
    + Run set + + + no options +
    + Options + + +
      -
      - walltime -
      - (s) -
      -
      -
      -
      +
        -
        - memory -
        - (MB) -
        -
        -
        -
        -
        - cpuenergy -
        - (J) -
        -
        -
        -
        -
      -
      + true + + +
    + +
    -
    + Click here to select columns + +
    + +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    + cpuenergy +
    + (J) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    -
    -
    -
    -
    +
    + all results + +
    +

    + Generated by + + BenchExec (test) + +

    `; -exports[`StatisticsTable for benchmark-example-true.2019-11-06_0932.results.no options.html Compare StatisticsTable using python-computed stats 1`] = ` +exports[`StatisticsTable for big-table.diff.html Compare StatisticsTable using js-computed stats 1`] = `

    - Statistics + Benchmark Setup

    -
    -
    -
    + -
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    -
    +
    + + + CPAchecker + + + trunk:18107 + + + + CPAchecker + + 1.4-svn 24ecead+ + + + CPAchecker + + 1.4-svn 18152M +
    + Limits + + + timelimit: 60 s, memlimit: 3000 MB, CPU core limit: 2 + + timelimit: 60 s, memlimit: 3000 MB, CPU core limit: 1 + + timelimit: 60 s, memlimit: 3000 MB, CPU core limit: 2 +
    + Host + + + [aal; aesche; aitel; babylon5; barbe; barsch; brachse; cayman*; cs-sel-05; cs-sel-06; deathstar; ds9; elysium; empoknor; excelsior; falcon; forelle; hausen; hecht; huchen; mt-farm01; mt-farm02; mt-farm03; mt-farm04; nervling; neunauge; node-*; saibling; saratoga; sovereign; tardis; voyager; zeus*] + + [mt-farm01; mt-farm02; mt-farm03; mt-farm04] + + node-* +
    + OS + + + [Linux 4.0.5-gentoo; Linux 3.13.0-66-generic; Linux 3.13.0-65-generic; Linux 3.13.0-55-generic; Linux 3.16.0-4-amd64; Linux 3.0.80-0.7-default] + + Linux 3.16.0-4-amd64 + + Linux 3.0.80-0.7-default +
    + System + + + CPU: [Intel Core i7-4790 @ 3.60 GHz; Intel Core i7-4770 @ 3.40 GHz; Intel Core i7-2600K @ 3.40 GHz; AMD Opteron 6380; Intel Xeon E7- 4870 @ 2.40 GHz; Intel Xeon E5-2650 v2 @ 2.60 GHz], cores: [8; 64; 80; 32], frequency: [3.6 GHz; 3.4 GHz; 2.5 GHz; 2.4 GHz; 2.6 GHz]; RAM: [16712 MB; 33644 MB; 16734 MB; 271006 MB; 1084131 MB; 1084266 MB; 1084265 MB; 948571 MB; 135150 MB] + + CPU: AMD Opteron 6380, cores: 64, frequency: 2.5 GHz; RAM: 271006 MB + + CPU: Intel Xeon E7- 4870 @ 2.40 GHz, cores: 80, frequency: 2.4 GHz; RAM: [1084265 MB; 1084131 MB; 1084266 MB; 948571 MB] +
    + Date of execution + + + 2015-10-20 13:55:32 CEST + + 2015-10-22 11:13:44 CEST + + 2015-10-23 13:48:29 CEST +
    + Run set + + + integration-predicateAnalysis + + integration-predicateAnalysis + + integration-predicateAnalysis +
    + Options + + +
      -
      -
      - -
      -
      -
      -
      -
      + + -noout + + +
    • - - DummyTool 2019-11-06 09:32:28 CET no options - -
      + -heap 2000M + +
    • +
    • -
    • -
      -
      + + -predicateAnalysis + + +
    + +
    +
      -
      - - Click here to select columns - -
      + -noout + + +
    • -
    • -
      + + -heap 2000M + + +
    • + + -predicateAnalysis + +
    • +
    + +
    +
      - - -
      +
        -
        - status -
        -
        + -noout + + +
      • -
      • -
        -
        - cputime -
        - (s) -
        -
        + -heap 2000M + + +
      • -
      • -
        -
        - walltime -
        - (s) -
        -
        -
        -
        + -predicateAnalysis + + +
      +
    +
    + + + +
    +
    - memory -
    - (MB) +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    + energy-core +
    +
    +
    +
    +
    + energy-cpu +
    +
    +
    +
    +
    + energy-external +
    +
    +
    +
    +
    + energy-uncore +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    +
    +
    +
    - cpuenergy -
    - (J) +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    -
    -
    +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    -
    -
    -
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +

    + Generated by + + BenchExec (test) + +

    `; -exports[`StatisticsTable for big-table.diff.html Compare StatisticsTable using js-computed stats 1`] = ` +exports[`StatisticsTable for big-table.diff.html Compare StatisticsTable using python-computed stats 1`] = `

    - Statistics + Benchmark Setup

    -
    -
    -
    + -
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    -
    +
    + + + CPAchecker + + + trunk:18107 + + + + CPAchecker + + 1.4-svn 24ecead+ + + + CPAchecker + + 1.4-svn 18152M +
    + Limits + + + timelimit: 60 s, memlimit: 3000 MB, CPU core limit: 2 + + timelimit: 60 s, memlimit: 3000 MB, CPU core limit: 1 + + timelimit: 60 s, memlimit: 3000 MB, CPU core limit: 2 +
    + Host + + + [aal; aesche; aitel; babylon5; barbe; barsch; brachse; cayman*; cs-sel-05; cs-sel-06; deathstar; ds9; elysium; empoknor; excelsior; falcon; forelle; hausen; hecht; huchen; mt-farm01; mt-farm02; mt-farm03; mt-farm04; nervling; neunauge; node-*; saibling; saratoga; sovereign; tardis; voyager; zeus*] + + [mt-farm01; mt-farm02; mt-farm03; mt-farm04] + + node-* +
    + OS + + + [Linux 4.0.5-gentoo; Linux 3.13.0-66-generic; Linux 3.13.0-65-generic; Linux 3.13.0-55-generic; Linux 3.16.0-4-amd64; Linux 3.0.80-0.7-default] + + Linux 3.16.0-4-amd64 + + Linux 3.0.80-0.7-default +
    + System + + + CPU: [Intel Core i7-4790 @ 3.60 GHz; Intel Core i7-4770 @ 3.40 GHz; Intel Core i7-2600K @ 3.40 GHz; AMD Opteron 6380; Intel Xeon E7- 4870 @ 2.40 GHz; Intel Xeon E5-2650 v2 @ 2.60 GHz], cores: [8; 64; 80; 32], frequency: [3.6 GHz; 3.4 GHz; 2.5 GHz; 2.4 GHz; 2.6 GHz]; RAM: [16712 MB; 33644 MB; 16734 MB; 271006 MB; 1084131 MB; 1084266 MB; 1084265 MB; 948571 MB; 135150 MB] + + CPU: AMD Opteron 6380, cores: 64, frequency: 2.5 GHz; RAM: 271006 MB + + CPU: Intel Xeon E7- 4870 @ 2.40 GHz, cores: 80, frequency: 2.4 GHz; RAM: [1084265 MB; 1084131 MB; 1084266 MB; 948571 MB] +
    + Date of execution + + + 2015-10-20 13:55:32 CEST + + 2015-10-22 11:13:44 CEST + + 2015-10-23 13:48:29 CEST +
    + Run set + + + integration-predicateAnalysis + + integration-predicateAnalysis + + integration-predicateAnalysis +
    + Options + + +
      -
      -
      - -
      -
      -
      -
      -
      - - CPAchecker 2015-10-20 13:55:32 CEST integration-predicateAnalysis - -
      + -noout + + +
    • -
    • -
      -
      - - CPAchecker 2015-10-22 11:13:44 CEST integration-predicateAnalysis - -
      + -heap 2000M + + +
    • -
    • -
      -
      - - CPAchecker 2015-10-23 13:48:29 CEST integration-predicateAnalysis - -
      -
      -
      -
      + -predicateAnalysis + + +
    + +
    +
      -
      - - Click here to select columns - -
      -
      -
      - -
      -
      -
      - status -
      -
      + -noout + + +
    • -
    • -
      -
      - cputime -
      - (s) -
      -
      + -heap 2000M + + +
    • -
    • -
      -
      - walltime -
      - (s) -
      -
      -
      -
      + -predicateAnalysis + + +
    + +
    +
      -
      - memory -
      - (MB) -
      -
      -
      -
      +
        -
        - energy-core -
        -
        -
        -
        -
        - energy-cpu -
        -
        + -noout + + +
      • -
      • -
        -
        - energy-external -
        -
        + -heap 2000M + + +
      • -
      • -
        -
        - energy-uncore -
        -
        -
        -
        - -
        -
        + -predicateAnalysis + + +
      +
    +
    + + + +
    - cputime -
    - (s) +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    + energy-core +
    +
    +
    +
    +
    + energy-cpu +
    +
    +
    +
    +
    + energy-external +
    +
    +
    +
    +
    + energy-uncore +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    +
    +
    +
    - walltime -
    - (s) +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    +
    +
    +
    - memory -
    - (MB) +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for big-table.table.html Compare StatisticsTable using js-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + + trunk:18107 + + + + CPAchecker + + 1.4-svn 24ecead+ + + + CPAchecker + + 1.4-svn 18152M +
    + Limits + + + timelimit: 60 s, memlimit: 3000 MB, CPU core limit: 2 + + timelimit: 60 s, memlimit: 3000 MB, CPU core limit: 1 + + timelimit: 60 s, memlimit: 3000 MB, CPU core limit: 2 +
    + Host + + + [aal; aesche; aitel; babylon5; barbe; barsch; brachse; cayman*; cs-sel-05; cs-sel-06; deathstar; ds9; elysium; empoknor; excelsior; falcon; forelle; hausen; hecht; huchen; mt-farm01; mt-farm02; mt-farm03; mt-farm04; nervling; neunauge; node-*; saibling; saratoga; sovereign; tardis; voyager; zeus*] + + [mt-farm01; mt-farm02; mt-farm03; mt-farm04] + + node-* +
    + OS + + + [Linux 4.0.5-gentoo; Linux 3.13.0-66-generic; Linux 3.13.0-65-generic; Linux 3.13.0-55-generic; Linux 3.16.0-4-amd64; Linux 3.0.80-0.7-default] + + Linux 3.16.0-4-amd64 + + Linux 3.0.80-0.7-default +
    + System + + + CPU: [Intel Core i7-4790 @ 3.60 GHz; Intel Core i7-4770 @ 3.40 GHz; Intel Core i7-2600K @ 3.40 GHz; AMD Opteron 6380; Intel Xeon E7- 4870 @ 2.40 GHz; Intel Xeon E5-2650 v2 @ 2.60 GHz], cores: [8; 64; 80; 32], frequency: [3.6 GHz; 3.4 GHz; 2.5 GHz; 2.4 GHz; 2.6 GHz]; RAM: [16712 MB; 33644 MB; 16734 MB; 271006 MB; 1084131 MB; 1084266 MB; 1084265 MB; 948571 MB; 135150 MB] + + CPU: AMD Opteron 6380, cores: 64, frequency: 2.5 GHz; RAM: 271006 MB + + CPU: Intel Xeon E7- 4870 @ 2.40 GHz, cores: 80, frequency: 2.4 GHz; RAM: [1084265 MB; 1084131 MB; 1084266 MB; 948571 MB] +
    + Date of execution + + + 2015-10-20 13:55:32 CEST + + 2015-10-22 11:13:44 CEST + + 2015-10-23 13:48:29 CEST +
    + Run set + + + integration-predicateAnalysis + + integration-predicateAnalysis + + integration-predicateAnalysis +
    + Options + + +
      - - -
      +
        -
        - status -
        -
        -
        -
        + + -noout + + +
      • -
        - cputime -
        - (s) -
        -
        + -heap 2000M + +
      • +
      • -
      • -
        + + -predicateAnalysis + + +
      +
    +
    +
      +
        -
        - walltime -
        - (s) -
        -
        -
        -
        + + -noout + + +
      • -
        - memory -
        - (MB) -
        -
        + -heap 2000M + +
      • +
      • -
      • - - -
        + + -predicateAnalysis + + +
      +
    +
    -
    -
    -
    -
    -
    -
    + + -noout + + +
  • -
    -
    -
    + + -heap 2000M + +
  • +
  • + + -predicateAnalysis + +
  • + + +
    + + + +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    + energy-core +
    +
    +
    +
    +
    + energy-cpu +
    +
    +
    +
    +
    + energy-external +
    +
    +
    +
    +
    + energy-uncore +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for big-table.table.html Compare StatisticsTable using python-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + + trunk:18107 + + + + CPAchecker + + 1.4-svn 24ecead+ + + + CPAchecker + + 1.4-svn 18152M +
    + Limits + + + timelimit: 60 s, memlimit: 3000 MB, CPU core limit: 2 + + timelimit: 60 s, memlimit: 3000 MB, CPU core limit: 1 + + timelimit: 60 s, memlimit: 3000 MB, CPU core limit: 2 +
    + Host + + + [aal; aesche; aitel; babylon5; barbe; barsch; brachse; cayman*; cs-sel-05; cs-sel-06; deathstar; ds9; elysium; empoknor; excelsior; falcon; forelle; hausen; hecht; huchen; mt-farm01; mt-farm02; mt-farm03; mt-farm04; nervling; neunauge; node-*; saibling; saratoga; sovereign; tardis; voyager; zeus*] + + [mt-farm01; mt-farm02; mt-farm03; mt-farm04] + + node-* +
    + OS + + + [Linux 4.0.5-gentoo; Linux 3.13.0-66-generic; Linux 3.13.0-65-generic; Linux 3.13.0-55-generic; Linux 3.16.0-4-amd64; Linux 3.0.80-0.7-default] + + Linux 3.16.0-4-amd64 + + Linux 3.0.80-0.7-default +
    + System + + + CPU: [Intel Core i7-4790 @ 3.60 GHz; Intel Core i7-4770 @ 3.40 GHz; Intel Core i7-2600K @ 3.40 GHz; AMD Opteron 6380; Intel Xeon E7- 4870 @ 2.40 GHz; Intel Xeon E5-2650 v2 @ 2.60 GHz], cores: [8; 64; 80; 32], frequency: [3.6 GHz; 3.4 GHz; 2.5 GHz; 2.4 GHz; 2.6 GHz]; RAM: [16712 MB; 33644 MB; 16734 MB; 271006 MB; 1084131 MB; 1084266 MB; 1084265 MB; 948571 MB; 135150 MB] + + CPU: AMD Opteron 6380, cores: 64, frequency: 2.5 GHz; RAM: 271006 MB + + CPU: Intel Xeon E7- 4870 @ 2.40 GHz, cores: 80, frequency: 2.4 GHz; RAM: [1084265 MB; 1084131 MB; 1084266 MB; 948571 MB] +
    + Date of execution + + + 2015-10-20 13:55:32 CEST + + 2015-10-22 11:13:44 CEST + + 2015-10-23 13:48:29 CEST +
    + Run set + + + integration-predicateAnalysis + + integration-predicateAnalysis + + integration-predicateAnalysis +
    + Options + + +
      -
      -
      -
      +
        -
        -
        -
        -
        -
        -
        + + -noout + + +
      • + + -heap 2000M + +
      • +
      • + + -predicateAnalysis + +
      • +
      +
    +
    +
      -
      +
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        + + -noout + + +
      • -
        -
        -
        + + -heap 2000M + +
      • +
      • -
        -
        -
      • -
        + + -predicateAnalysis + + +
      +
    +
    +
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      + + -noout + + +
    • -
      -
      -
      + + -heap 2000M + +
    • +
    • -
      -
      -
    • -
      + + -predicateAnalysis + + +
    + +
    + + + +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    + energy-core +
    +
    +
    +
    +
    + energy-cpu +
    +
    +
    +
    +
    + energy-external +
    +
    +
    +
    +
    + energy-uncore +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for cbmc.2015-12-11_1211.results.Simple.html Compare StatisticsTable using js-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CBMC + +
    + Limits + + + timelimit: 60 s, memlimit: 4000 MB, CPU core limit: 2 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-71-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz, Turbo Boost: enabled; RAM: 16783 MB +
    + Date of execution + + + 2015-12-11 12:11:02 CET +
    + Run set + + + cbmc +
    + Properties + + + unreach-call +
    + + + +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for big-table.diff.html Compare StatisticsTable using python-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-10-20 13:55:32 CEST integration-predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-10-22 11:13:44 CEST integration-predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-10-23 13:48:29 CEST integration-predicateAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    - energy-core -
    -
    -
    -
    -
    - energy-cpu -
    -
    -
    -
    -
    - energy-external -
    -
    -
    -
    -
    - energy-uncore -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for big-table.table.html Compare StatisticsTable using js-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-10-20 13:55:32 CEST integration-predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-10-22 11:13:44 CEST integration-predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-10-23 13:48:29 CEST integration-predicateAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    - energy-core -
    -
    -
    -
    -
    - energy-cpu -
    -
    -
    -
    -
    - energy-external -
    -
    -
    -
    -
    - energy-uncore -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for big-table.table.html Compare StatisticsTable using python-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-10-20 13:55:32 CEST integration-predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-10-22 11:13:44 CEST integration-predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-10-23 13:48:29 CEST integration-predicateAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    - energy-core -
    -
    -
    -
    -
    - energy-cpu -
    -
    -
    -
    -
    - energy-external -
    -
    -
    -
    -
    - energy-uncore -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for cbmc.2015-12-11_1211.results.Simple.html Compare StatisticsTable using js-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CBMC 2015-12-11 12:11:02 CET cbmc - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for cbmc.2015-12-11_1211.results.Simple.html Compare StatisticsTable using python-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CBMC 2015-12-11 12:11:02 CET cbmc - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for integration-predicateAnalysis.2015-10-20_1355.all-columns.html Compare StatisticsTable using js-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-10-20 13:55:32 CEST integration-predicateAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    - energy-core -
    -
    -
    -
    -
    - energy-cpu -
    -
    -
    -
    -
    - energy-external -
    -
    -
    -
    -
    - energy-uncore -
    -
    -
    -
    -
    - vcloud-exitcode -
    -
    -
    -
    -
    - vcloud-memoryLimit -
    - (B) -
    -
    -
    -
    -
    - vcloud-outerwalltime -
    - (s) -
    -
    -
    -
    -
    - vcloud-returnvalue -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for integration-predicateAnalysis.2015-10-20_1355.all-columns.html Compare StatisticsTable using python-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-10-20 13:55:32 CEST integration-predicateAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    - energy-core -
    -
    -
    -
    -
    - energy-cpu -
    -
    -
    -
    -
    - energy-external -
    -
    -
    -
    -
    - energy-uncore -
    -
    -
    -
    -
    - vcloud-exitcode -
    -
    -
    -
    -
    - vcloud-memoryLimit -
    - (B) -
    -
    -
    -
    -
    - vcloud-outerwalltime -
    - (s) -
    -
    -
    -
    -
    - vcloud-returnvalue -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for multi-table.diff.html Compare StatisticsTable using js-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for multi-table.diff.html Compare StatisticsTable using python-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for multi-table.table.html Compare StatisticsTable using js-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for multi-table.table.html Compare StatisticsTable using python-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for multi-table-only-columns.diff.html Compare StatisticsTable using js-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - SMT time -
    - (s) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - variable count -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - SMT time -
    - (s) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - variable count -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for multi-table-only-columns.diff.html Compare StatisticsTable using python-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - SMT time -
    - (s) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - variable count -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - SMT time -
    - (s) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - variable count -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for multi-table-only-columns.table.html Compare StatisticsTable using js-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - SMT time -
    - (s) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - variable count -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - SMT time -
    - (s) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - variable count -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for multi-table-only-columns.table.html Compare StatisticsTable using python-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - SMT time -
    - (s) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - variable count -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - SMT time -
    - (s) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - variable count -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for multi-table-with-columns.diff.html Compare StatisticsTable using js-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - SMT time -
    - (s) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - variable count -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - analysis -
    - (s) -
    -
    -
    -
    -
    - SMT time -
    - (s) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - analysis -
    - (s) -
    -
    -
    -
    -
    - variable count -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for multi-table-with-columns.diff.html Compare StatisticsTable using python-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - SMT time -
    - (s) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - variable count -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - analysis -
    - (s) -
    -
    -
    -
    -
    - SMT time -
    - (s) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - analysis -
    - (s) -
    -
    -
    -
    -
    - variable count -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for multi-table-with-columns.table.html Compare StatisticsTable using js-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - SMT time -
    - (s) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - variable count -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - analysis -
    - (s) -
    -
    -
    -
    -
    - SMT time -
    - (s) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - analysis -
    - (s) -
    -
    -
    -
    -
    - variable count -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for multi-table-with-columns.table.html Compare StatisticsTable using python-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - SMT time -
    - (s) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - variable count -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - analysis -
    - (s) -
    -
    -
    -
    -
    - SMT time -
    - (s) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - analysis -
    - (s) -
    -
    -
    -
    -
    - variable count -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for multi-table-with-diff-over-column.diff.html Compare StatisticsTable using js-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - SMT time -
    - (s) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - variable count -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - SMT time -
    - (s) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - variable count -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for multi-table-with-diff-over-column.diff.html Compare StatisticsTable using python-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - SMT time -
    - (s) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - variable count -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - SMT time -
    - (s) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - variable count -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for multi-table-with-diff-over-column.table.html Compare StatisticsTable using js-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - SMT time -
    - (s) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - variable count -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - SMT time -
    - (s) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - variable count -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for multi-table-with-diff-over-column.table.html Compare StatisticsTable using python-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - SMT time -
    - (s) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - variable count -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - SMT time -
    - (s) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - variable count -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for multi-table-with-wildcards.diff.html Compare StatisticsTable using js-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for multi-table-with-wildcards.diff.html Compare StatisticsTable using python-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for multi-table-with-wildcards.table.html Compare StatisticsTable using js-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for multi-table-with-wildcards.table.html Compare StatisticsTable using python-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for nan_and_inf.html Compare StatisticsTable using js-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2018-06-27 14:40:12 CEST Model-Based-Selection - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    - Aliasing -
    -
    -
    -
    -
    - Arrays -
    -
    -
    -
    -
    - Boolean -
    -
    -
    -
    -
    - Composite types -
    -
    -
    -
    -
    - Floats -
    -
    -
    -
    -
    - Loops -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for nan_and_inf.html Compare StatisticsTable using python-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2018-06-27 14:40:12 CEST Model-Based-Selection - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    - Aliasing -
    -
    -
    -
    -
    - Arrays -
    -
    -
    -
    -
    - Boolean -
    -
    -
    -
    -
    - Composite types -
    -
    -
    -
    -
    - Floats -
    -
    -
    -
    -
    - Loops -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for predicateAnalysis.table.html Compare StatisticsTable using js-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for predicateAnalysis.table.html Compare StatisticsTable using python-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for predicateAnalysis-reverse.table.html Compare StatisticsTable using js-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for predicateAnalysis-reverse.table.html Compare StatisticsTable using python-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for rows-with-scores.html Compare StatisticsTable using js-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - DummyTool 2019-12-20 15:32:33 CET 0 - -
    -
    -
    -
    - - DummyTool 2020-06-10 09:17:06 CEST 0 - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    - cpuenergy -
    - (J) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    - cpuenergy -
    - (J) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for rows-with-scores.html Compare StatisticsTable using python-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - DummyTool 2019-12-20 15:32:33 CET 0 - -
    -
    -
    -
    - - DummyTool 2020-06-10 09:17:06 CEST 0 - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    - cpuenergy -
    - (J) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    - cpuenergy -
    - (J) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for simple-table-with-columns.table.html Compare StatisticsTable using js-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - CPU Time -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for simple-table-with-columns.table.html Compare StatisticsTable using python-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - CPU Time -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for simple-table-with-links.table.html Compare StatisticsTable using js-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for simple-table-with-links.table.html Compare StatisticsTable using python-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for simple-table-with-numberOfDigits.table.html Compare StatisticsTable using js-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for simple-table-with-numberOfDigits.table.html Compare StatisticsTable using python-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for simple-table-with-scaling.table.html Compare StatisticsTable using js-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (ms) -
    -
    -
    -
    -
    - cputime-h -
    - (h) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (ns) -
    -
    -
    -
    -
    - walltime -
    - (Gs) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    - memory-GB -
    - (GB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for simple-table-with-scaling.table.html Compare StatisticsTable using python-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (ms) -
    -
    -
    -
    -
    - cputime-h -
    - (h) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (ns) -
    -
    -
    -
    -
    - walltime -
    - (Gs) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    - memory-GB -
    - (GB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for smt.diff.html Compare StatisticsTable using js-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - MathSAT 2015-05-27 10:04:55 CEST mathsat - -
    -
    -
    -
    - - SMTInterpol 2015-05-27 10:04:27 CEST smtinterpol - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for smt.diff.html Compare StatisticsTable using python-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - MathSAT 2015-05-27 10:04:55 CEST mathsat - -
    -
    -
    -
    - - SMTInterpol 2015-05-27 10:04:27 CEST smtinterpol - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for smt.table.html Compare StatisticsTable using js-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - MathSAT 2015-05-27 10:04:55 CEST mathsat - -
    -
    -
    -
    - - SMTInterpol 2015-05-27 10:04:27 CEST smtinterpol - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for smt.table.html Compare StatisticsTable using python-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - MathSAT 2015-05-27 10:04:55 CEST mathsat - -
    -
    -
    -
    - - SMTInterpol 2015-05-27 10:04:27 CEST smtinterpol - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for task-def-files.table.html Compare StatisticsTable using js-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - DummyTool 2019-12-20 15:32:33 CET 0 - -
    -
    -
    -
    - - DummyTool 2020-06-10 09:17:06 CEST 0 - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    - cpuenergy -
    - (J) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    - cpuenergy -
    - (J) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for task-def-files.table.html Compare StatisticsTable using python-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - DummyTool 2019-12-20 15:32:33 CET 0 - -
    -
    -
    -
    - - DummyTool 2020-06-10 09:17:06 CEST 0 - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    - cpuenergy -
    - (J) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    - cpuenergy -
    - (J) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for test.2015-03-03_1613.diff.html Compare StatisticsTable using js-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for test.2015-03-03_1613.diff.html Compare StatisticsTable using python-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for test.2015-03-03_1613.results.predicateAnalysis.all-columns.html Compare StatisticsTable using js-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    - exitcode -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for test.2015-03-03_1613.results.predicateAnalysis.all-columns.html Compare StatisticsTable using python-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    - exitcode -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for test.2015-03-03_1613.results.predicateAnalysis.correct-only.html Compare StatisticsTable using js-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for test.2015-03-03_1613.results.predicateAnalysis.correct-only.html Compare StatisticsTable using python-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for test.2015-03-03_1613.results.predicateAnalysis.custom-score.html Compare StatisticsTable using js-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis.0 - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    - score -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for test.2015-03-03_1613.results.predicateAnalysis.custom-score.html Compare StatisticsTable using python-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis.0 - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    - score -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for test.2015-03-03_1613.results.predicateAnalysis.html Compare StatisticsTable using js-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for test.2015-03-03_1613.results.predicateAnalysis.html Compare StatisticsTable using python-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for test.2015-03-03_1613.results.valueAnalysis.html Compare StatisticsTable using js-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for test.2015-03-03_1613.results.valueAnalysis.html Compare StatisticsTable using python-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for test.2015-03-03_1613.results.valueAnalysis.table.html Compare StatisticsTable using js-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for test.2015-03-03_1613.results.valueAnalysis.table.html Compare StatisticsTable using python-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for test.2015-03-03_1613.table.html Compare StatisticsTable using js-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for test.2015-03-03_1613.table.html Compare StatisticsTable using python-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for test.2015-03-03_1613-common.diff.html Compare StatisticsTable using js-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for test.2015-03-03_1613-common.diff.html Compare StatisticsTable using python-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for test.2015-03-03_1613-common.table.html Compare StatisticsTable using js-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for test.2015-03-03_1613-common.table.html Compare StatisticsTable using python-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for test.2015-03-03_1613-correct-only.diff.html Compare StatisticsTable using js-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for test.2015-03-03_1613-correct-only.diff.html Compare StatisticsTable using python-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for test.2015-03-03_1613-correct-only.table.html Compare StatisticsTable using js-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for test.2015-03-03_1613-correct-only.table.html Compare StatisticsTable using python-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for test.2015-03-03_1613-reverse.diff.html Compare StatisticsTable using js-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for test.2015-03-03_1613-reverse.diff.html Compare StatisticsTable using python-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for test.2015-03-03_1613-reverse.table.html Compare StatisticsTable using js-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for test.2015-03-03_1613-reverse.table.html Compare StatisticsTable using python-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for test-error.2015-03-03_1613.diff.html Compare StatisticsTable using js-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for test-error.2015-03-03_1613.diff.html Compare StatisticsTable using python-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for test-error.2015-03-03_1613.table.html Compare StatisticsTable using js-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for test-error.2015-03-03_1613.table.html Compare StatisticsTable using python-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for union-table.diff.html Compare StatisticsTable using js-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for union-table.diff.html Compare StatisticsTable using python-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for union-table.table.html Compare StatisticsTable using js-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for union-table.table.html Compare StatisticsTable using python-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for union-table-duplicate-results.diff.html Compare StatisticsTable using js-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker [2015-03-03 16:13:02 CET; 2015-03-03 18:15:20 CET] predicateAnalysis - -
    -
    -
    -
    - - CPAchecker [2015-03-03 16:13:02 CET; 2015-03-03 18:15:20 CET] valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; - -exports[`StatisticsTable for union-table-duplicate-results.diff.html Compare StatisticsTable using python-computed stats 1`] = ` -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker [2015-03-03 16:13:02 CET; 2015-03-03 18:15:20 CET] predicateAnalysis - -
    -
    -
    -
    - - CPAchecker [2015-03-03 16:13:02 CET; 2015-03-03 18:15:20 CET] valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    +
    -
    +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    + correct results +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for cbmc.2015-12-11_1211.results.Simple.html Compare StatisticsTable using python-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    +
    + Limits + + + timelimit: 60 s, memlimit: 4000 MB, CPU core limit: 2 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-71-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz, Turbo Boost: enabled; RAM: 16783 MB +
    + Date of execution + + + 2015-12-11 12:11:02 CET +
    + Run set + + + cbmc +
    + Properties + + + unreach-call +
    + + + +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for integration-predicateAnalysis.2015-10-20_1355.all-columns.html Compare StatisticsTable using js-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + + trunk:18107 + +
    + Limits + + + timelimit: 60 s, memlimit: 3000 MB, CPU core limit: 2 +
    + Host + + + [aal; aesche; aitel; babylon5; barbe; barsch; brachse; cayman*; cs-sel-05; cs-sel-06; deathstar; ds9; elysium; empoknor; excelsior; falcon; forelle; hausen; hecht; huchen; mt-farm01; mt-farm02; mt-farm03; mt-farm04; nervling; neunauge; node-*; saibling; saratoga; sovereign; tardis; voyager; zeus*] +
    + OS + + + [Linux 4.0.5-gentoo; Linux 3.13.0-66-generic; Linux 3.13.0-65-generic; Linux 3.13.0-55-generic; Linux 3.16.0-4-amd64; Linux 3.0.80-0.7-default] +
    + System + + + CPU: [Intel Core i7-4790 @ 3.60 GHz; Intel Core i7-4770 @ 3.40 GHz; Intel Core i7-2600K @ 3.40 GHz; AMD Opteron 6380; Intel Xeon E7- 4870 @ 2.40 GHz; Intel Xeon E5-2650 v2 @ 2.60 GHz], cores: [8; 64; 80; 32], frequency: [3.6 GHz; 3.4 GHz; 2.5 GHz; 2.4 GHz; 2.6 GHz]; RAM: [16712 MB; 33644 MB; 16734 MB; 271006 MB; 1084131 MB; 1084266 MB; 1084265 MB; 948571 MB; 135150 MB] +
    + Date of execution + + + 2015-10-20 13:55:32 CEST +
    + Run set + + + integration-predicateAnalysis +
    + Options + + +
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      - - -
      -
      -
      + -noout + + +
    • -
      - - -
      -
    • -
      + -heap 2000M + + +
    • -
      - - -
      -
    • -
      -
      + -predicateAnalysis + + +
    + +
    + + + +
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    + energy-core +
    +
    +
    +
    +
    + energy-cpu +
    +
    +
    +
    +
    + energy-external +
    +
    +
    +
    +
    + energy-uncore +
    +
    +
    +
    +
    + vcloud-exitcode +
    +
    +
    +
    +
    + vcloud-memoryLimit +
    + (B) +
    +
    +
    +
    +
    + vcloud-outerwalltime +
    + (s) +
    +
    +
    +
    +
    + vcloud-returnvalue +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for integration-predicateAnalysis.2015-10-20_1355.all-columns.html Compare StatisticsTable using python-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + + trunk:18107 + +
    + Limits + + + timelimit: 60 s, memlimit: 3000 MB, CPU core limit: 2 +
    + Host + + + [aal; aesche; aitel; babylon5; barbe; barsch; brachse; cayman*; cs-sel-05; cs-sel-06; deathstar; ds9; elysium; empoknor; excelsior; falcon; forelle; hausen; hecht; huchen; mt-farm01; mt-farm02; mt-farm03; mt-farm04; nervling; neunauge; node-*; saibling; saratoga; sovereign; tardis; voyager; zeus*] +
    + OS + + + [Linux 4.0.5-gentoo; Linux 3.13.0-66-generic; Linux 3.13.0-65-generic; Linux 3.13.0-55-generic; Linux 3.16.0-4-amd64; Linux 3.0.80-0.7-default] +
    + System + + + CPU: [Intel Core i7-4790 @ 3.60 GHz; Intel Core i7-4770 @ 3.40 GHz; Intel Core i7-2600K @ 3.40 GHz; AMD Opteron 6380; Intel Xeon E7- 4870 @ 2.40 GHz; Intel Xeon E5-2650 v2 @ 2.60 GHz], cores: [8; 64; 80; 32], frequency: [3.6 GHz; 3.4 GHz; 2.5 GHz; 2.4 GHz; 2.6 GHz]; RAM: [16712 MB; 33644 MB; 16734 MB; 271006 MB; 1084131 MB; 1084266 MB; 1084265 MB; 948571 MB; 135150 MB] +
    + Date of execution + + + 2015-10-20 13:55:32 CEST +
    + Run set + + + integration-predicateAnalysis +
    + Options + + +
      -
      +
        -
        -
        -
        -
        - - -
        -
        -
        + -noout + + +
      • -
        - - -
        -
      • -
        + -heap 2000M + + +
      • + + -predicateAnalysis + +
      • +
      +
    +
    + + + +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    + energy-core +
    +
    +
    +
    +
    + energy-cpu +
    +
    +
    +
    +
    + energy-external +
    +
    +
    +
    +
    + energy-uncore +
    +
    +
    +
    +
    + vcloud-exitcode +
    +
    +
    +
    +
    + vcloud-memoryLimit +
    + (B) +
    +
    +
    +
    +
    + vcloud-outerwalltime +
    + (s) +
    +
    +
    +
    +
    + vcloud-returnvalue +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    -
    -
    -
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +

    + Generated by + + BenchExec (test) + +

    `; -exports[`StatisticsTable for union-table-duplicate-results.table.html Compare StatisticsTable using js-computed stats 1`] = ` +exports[`StatisticsTable for multi-table.diff.html Compare StatisticsTable using js-computed stats 1`] = `

    - Statistics + Benchmark Setup

    -
    -
    -
    + -
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    -
    +
    + + + CPAchecker + + 1.4-svn 15944M + + + CPAchecker + + 1.4-svn 15986M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET + + 2015-03-03 18:15:20 CET +
    + Run set + + + predicateAnalysis + + valueAnalysis + + predicateAnalysis + + valueAnalysis +
    + Options + + +
      -
      -
      - -
      -
      -
      -
      -
      - - CPAchecker [2015-03-03 16:13:02 CET; 2015-03-03 18:15:20 CET] predicateAnalysis - -
      + -noout + + +
    • -
    • -
      -
      - - CPAchecker [2015-03-03 16:13:02 CET; 2015-03-03 18:15:20 CET] valueAnalysis - -
      + -setprop log.consoleLevel=WARNING + + +
    • -
    • -
      -
      + + -predicateAnalysis + + +
    + +
    +
      -
      - - Click here to select columns - -
      + -noout + + +
    • -
    • -
      + + -setprop log.consoleLevel=WARNING + + +
    • + + -valueAnalysis + +
    • +
    + +
    +
      - - -
      +
        -
        - status -
        -
        -
        -
        -
        - cputime -
        - (s) -
        -
        + -noout + + +
      • -
      • -
        -
        - walltime -
        - (s) -
        -
        + -setprop log.consoleLevel=WARNING + + +
      • -
      • -
        + + -predicateAnalysis + + +
      +
    +
    +
      +
        -
        - memory -
        - (MB) -
        -
        + -noout + + +
      • -
      • -
        + + -setprop log.consoleLevel=WARNING + + +
      • + + -valueAnalysis + +
      • +
      +
    +
    + + + +
    - status +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    +
    +
    +
    - cputime -
    - (s) +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    +
    +
    +
    - walltime -
    - (s) +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    +
    +
    +
    - memory -
    - (MB) +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    -
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for multi-table.diff.html Compare StatisticsTable using python-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M + + + CPAchecker + + 1.4-svn 15986M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET + + 2015-03-03 18:15:20 CET +
    + Run set + + + predicateAnalysis + + valueAnalysis + + predicateAnalysis + + valueAnalysis +
    + Options + + -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    + + -noout + + +
  • -
    -
    -
    + + -setprop log.consoleLevel=WARNING + +
  • +
  • -
    -
    -
  • -
    + + -predicateAnalysis + + + + +
    +
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      + + -noout + + +
    • -
      -
      -
      + + -setprop log.consoleLevel=WARNING + +
    • +
    • + + -valueAnalysis + +
    • +
    + +
    +
      -
      +
        -
        -
        -
        -
        -
        -
        + + -noout + + +
      • -
        -
        -
        + + -setprop log.consoleLevel=WARNING + +
      • +
      • -
        -
        -
      • -
        + + -predicateAnalysis + + +
      +
    +
    +
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      + + -noout + + +
    • -
      -
      -
      + + -setprop log.consoleLevel=WARNING + +
    • +
    • + + -valueAnalysis + +
    • +
    + +
    + + + +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for multi-table.table.html Compare StatisticsTable using js-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M + + + CPAchecker + + 1.4-svn 15986M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET + + 2015-03-03 18:15:20 CET +
    + Run set + + + predicateAnalysis + + valueAnalysis + + predicateAnalysis + + valueAnalysis +
    + Options + + +
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      +
        -
        -
        -
      -
      + + -noout + + +
    • + + -setprop log.consoleLevel=WARNING + +
    • +
    • + + -predicateAnalysis + +
    • +
    + +
    +
      -
      -
      -
      -
      -
      + + -noout + + +
    • + + -setprop log.consoleLevel=WARNING + +
    • +
    • + + -valueAnalysis + +
    • +
    + +
    +
      -
      -
      -
      +
        -
        -
        -
        + + -noout + + +
      • + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -predicateAnalysis + +
      • +
      +
    +
    +
      -
      -
      -
      +
        -
        -
        -
        -
        + + -noout + + +
      • + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -valueAnalysis + +
      • +
      +
    +
    + + + +
    +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for multi-table.table.html Compare StatisticsTable using python-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M + + + CPAchecker + + 1.4-svn 15986M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET + + 2015-03-03 18:15:20 CET +
    + Run set + + + predicateAnalysis + + valueAnalysis + + predicateAnalysis + + valueAnalysis +
    + Options + + +
      -
      -
      -
      -
      -
      + + -noout + + +
    • -
      -
      -
      + + -setprop log.consoleLevel=WARNING + +
    • +
    • + + -predicateAnalysis + +
    • +
    + +
    +
      -
      -
      -
      +
        -
        -
        -
        -
        -
        -
        + + -noout + + +
      • -
        + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -valueAnalysis + +
      • +
      +
    +
    +
      -
      -
      -
      +
        -
        - - -
        -
      -
      + -noout + + +
    • -
      - - -
      -
    • -
      + -setprop log.consoleLevel=WARNING + + +
    • -
      - - -
      -
    • - -
      + -predicateAnalysis + + +
    + +
    +
      -
      -
      -
      -
      -
      -
      -
      -
      -
      - - -
      -
      -
      + -noout + + +
    • -
      - - -
      -
    • -
      + -setprop log.consoleLevel=WARNING + + +
    • -
      - - -
      -
    • -
      + -valueAnalysis + + +
    + +
    + + + +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    +
    +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    -
    -
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +

    + Generated by + + BenchExec (test) + +

    `; -exports[`StatisticsTable for union-table-duplicate-results.table.html Compare StatisticsTable using python-computed stats 1`] = ` +exports[`StatisticsTable for multi-table-only-columns.diff.html Compare StatisticsTable using js-computed stats 1`] = `

    - Statistics + Benchmark Setup

    -
    -
    -
    + -
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    -
    +
    + + + CPAchecker + + 1.4-svn 15944M + + + CPAchecker + + 1.4-svn 15986M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET + + 2015-03-03 18:15:20 CET +
    + Run set + + + predicateAnalysis + + valueAnalysis + + predicateAnalysis + + valueAnalysis +
    + Options + + +
      -
      -
      - -
      -
      -
      -
      -
      - - CPAchecker [2015-03-03 16:13:02 CET; 2015-03-03 18:15:20 CET] predicateAnalysis - -
      + -noout + + +
    • -
    • -
      -
      - - CPAchecker [2015-03-03 16:13:02 CET; 2015-03-03 18:15:20 CET] valueAnalysis - -
      + -setprop log.consoleLevel=WARNING + + +
    • -
    • -
      -
      + + -predicateAnalysis + + +
    + +
    +
      -
      - - Click here to select columns - -
      -
      -
      - -
      -
      -
      - status -
      -
      + -noout + + +
    • -
    • -
      -
      - cputime -
      - (s) -
      -
      + -setprop log.consoleLevel=WARNING + + +
    • -
    • -
      + + -valueAnalysis + + +
    + +
    +
      +
        -
        - walltime -
        - (s) -
        -
        -
        -
        -
        - memory -
        - (MB) -
        -
        + -noout + + +
      • -
      • -
        - -
        -
        -
        - status -
        -
        + -setprop log.consoleLevel=WARNING + + +
      • -
      • -
        + + -predicateAnalysis + + +
      +
    +
    +
      +
        -
        - cputime -
        - (s) -
        -
        -
        -
        -
        - walltime -
        - (s) -
        -
        + -noout + + +
      • -
      • -
        -
        - memory -
        - (MB) -
        -
        + -setprop log.consoleLevel=WARNING + + +
      • -
      • -
        -
        -
        + + -valueAnalysis + + +
      +
    +
    -
    + Click here to select columns + +
    + +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + setup +
    + (s) +
    +
    +
    +
    +
    + SMT time +
    + (s) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + setup +
    + (s) +
    +
    +
    +
    +
    + variable count +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + setup +
    + (s) +
    +
    +
    +
    +
    + SMT time +
    + (s) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + setup +
    + (s) +
    +
    +
    +
    +
    + variable count +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for multi-table-only-columns.diff.html Compare StatisticsTable using python-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M + + + CPAchecker + + 1.4-svn 15986M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET + + 2015-03-03 18:15:20 CET +
    + Run set + + + predicateAnalysis + + valueAnalysis + + predicateAnalysis + + valueAnalysis +
    + Options + + +
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      + + -noout + + +
    • -
      -
      -
      + + -setprop log.consoleLevel=WARNING + +
    • +
    • + + -predicateAnalysis + +
    • +
    + +
    +
      -
      +
        -
        -
        -
        -
        -
        -
        + + -noout + + +
      • -
        -
        -
        + + -setprop log.consoleLevel=WARNING + +
      • +
      • -
        -
        -
      • -
        + + -valueAnalysis + + +
      +
    +
    +
      -
      -
      -
      -
      -
      + + -noout + + +
    • -
      -
      -
      + + -setprop log.consoleLevel=WARNING + +
    • +
    • + + -predicateAnalysis + +
    • +
    + +
    +
      -
      -
      -
      +
        -
        -
        -
        -
        -
        -
        + + -noout + + +
      • -
        + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -valueAnalysis + +
      • +
      +
    +
    + + + +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + setup +
    + (s) +
    +
    +
    +
    +
    + SMT time +
    + (s) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + setup +
    + (s) +
    +
    +
    +
    +
    + variable count +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + setup +
    + (s) +
    +
    +
    +
    +
    + SMT time +
    + (s) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + setup +
    + (s) +
    +
    +
    +
    +
    + variable count +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for multi-table-only-columns.table.html Compare StatisticsTable using js-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M + + + CPAchecker + + 1.4-svn 15986M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET + + 2015-03-03 18:15:20 CET +
    + Run set + + + predicateAnalysis + + valueAnalysis + + predicateAnalysis + + valueAnalysis +
    + Options + + +
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      + + -noout + + +
    • -
      -
      -
      + + -setprop log.consoleLevel=WARNING + +
    • +
    • -
      - - -
      -
    • -
      + -predicateAnalysis + + +
    + +
    +
      +
        -
        - - -
        - -
        + -noout + + +
      • -
        - - -
        -
      • - -
        + -setprop log.consoleLevel=WARNING + + +
      • + + -valueAnalysis + +
      • +
      +
    +
    +
      -
      -
      -
      -
      -
      + + -noout + + +
    • -
      -
      -
      + + -setprop log.consoleLevel=WARNING + +
    • +
    • + + -predicateAnalysis + +
    • +
    + +
    +
      -
      -
      -
      +
        -
        -
        -
        -
        -
        -
        + + -noout + + +
      • -
        + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -valueAnalysis + +
      • +
      +
    +
    + + + +
    +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + setup +
    + (s) +
    +
    +
    +
    +
    + SMT time +
    + (s) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + setup +
    + (s) +
    +
    +
    +
    +
    + variable count +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + setup +
    + (s) +
    +
    +
    +
    +
    + SMT time +
    + (s) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + setup +
    + (s) +
    +
    +
    +
    +
    + variable count +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for multi-table-only-columns.table.html Compare StatisticsTable using python-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M + + + CPAchecker + + 1.4-svn 15986M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET + + 2015-03-03 18:15:20 CET +
    + Run set + + + predicateAnalysis + + valueAnalysis + + predicateAnalysis + + valueAnalysis +
    + Options + + +
      -
      -
      -
      -
      -
      + + -noout + + +
    • + + -setprop log.consoleLevel=WARNING + +
    • +
    • + + -predicateAnalysis + +
    • +
    + +
    +
      -
      -
      -
      +
        -
        - - -
        -
      -
      + -noout + + +
    • + + -setprop log.consoleLevel=WARNING + +
    • +
    • + + -valueAnalysis + +
    • +
    + +
    +
      +
        -
        - - -
        - -
        + -noout + + +
      • + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -predicateAnalysis + +
      • +
      +
    +
    +
      +
        -
        - - -
        - -
        + -noout + + +
      • -
        + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -valueAnalysis + +
      • +
      +
    +
    + + + +
    +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + setup +
    + (s) +
    +
    +
    +
    +
    + SMT time +
    + (s) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + setup +
    + (s) +
    +
    +
    +
    +
    + variable count +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + setup +
    + (s) +
    +
    +
    +
    +
    + SMT time +
    + (s) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + setup +
    + (s) +
    +
    +
    +
    +
    + variable count +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    -
    -
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +

    + Generated by + + BenchExec (test) + +

    `; -exports[`StatisticsTable for union-table-mixed.diff.html Compare StatisticsTable using js-computed stats 1`] = ` +exports[`StatisticsTable for multi-table-with-columns.diff.html Compare StatisticsTable using js-computed stats 1`] = `

    - Statistics + Benchmark Setup

    -
    -
    -
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M + + + CPAchecker + + 1.4-svn 15986M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    -
    -
    +
    + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET + + 2015-03-03 18:15:20 CET +
    + Run set + + + predicateAnalysis + + valueAnalysis + + predicateAnalysis + + valueAnalysis +
    + Options + + +
      -
      -
      - -
      -
      -
      -
      -
      - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
      + -noout + + +
    • -
    • -
      -
      - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
      + -setprop log.consoleLevel=WARNING + + +
    • -
    • -
      -
      - - CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis - -
      -
      -
      -
      + -predicateAnalysis + + +
    + +
    +
      -
      - - Click here to select columns - -
      -
      -
      - -
      -
      -
      - status -
      -
      + -noout + + +
    • -
    • -
      -
      - cputime -
      - (s) -
      -
      + -setprop log.consoleLevel=WARNING + + +
    • -
    • -
      + + -valueAnalysis + + +
    + +
    +
      +
        -
        - walltime -
        - (s) -
        -
        -
        -
        -
        - memory -
        - (MB) -
        -
        + -noout + + +
      • -
      • -
        - -
        -
        -
        - status -
        -
        + -setprop log.consoleLevel=WARNING + + +
      • -
      • -
        + + -predicateAnalysis + + +
      +
    +
    +
      +
        -
        - cputime -
        - (s) -
        -
        -
        -
        -
        - walltime -
        - (s) -
        -
        + -noout + + +
      • -
      • -
        -
        - memory -
        - (MB) -
        -
        + -setprop log.consoleLevel=WARNING + + +
      • -
      • -
        + + -valueAnalysis + + +
      +
    +
    + + + +
    - status +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + setup +
    + (s) +
    +
    +
    +
    +
    + SMT time +
    + (s) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    +
    +
    +
    - cputime -
    - (s) +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + setup +
    + (s) +
    +
    +
    +
    +
    + variable count +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    +
    +
    +
    - walltime -
    - (s) +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + analysis +
    + (s) +
    +
    +
    +
    +
    + SMT time +
    + (s) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    +
    +
    +
    - memory -
    - (MB) +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + analysis +
    + (s) +
    +
    +
    +
    +
    + variable count +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    -
    -
    +
    -
    +
    +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for multi-table-with-columns.diff.html Compare StatisticsTable using python-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    + 1.4-svn 15944M +
    + + CPAchecker + + 1.4-svn 15986M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET + + 2015-03-03 18:15:20 CET +
    + Run set + + + predicateAnalysis + + valueAnalysis + + predicateAnalysis + + valueAnalysis +
    + Options + + +
      -
      +
        -
        -
        -
        -
        -
        -
        + + -noout + + +
      • -
        -
        -
        + + -setprop log.consoleLevel=WARNING + +
      • +
      • -
        -
        -
      • -
        + + -predicateAnalysis + + +
      +
    +
    +
      -
      -
      -
      -
      -
      + + -noout + + +
    • -
      -
      -
      + + -setprop log.consoleLevel=WARNING + +
    • +
    • + + -valueAnalysis + +
    • +
    + +
    +
      -
      -
      -
      +
        -
        -
        -
        -
        -
        -
        + + -noout + + +
      • -
        + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -predicateAnalysis + +
      • +
      +
    +
    +
      -
      -
      -
      +
        -
        -
        -
        -
        -
        -
        + + -noout + + +
      • -
        -
        -
        + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -valueAnalysis + +
      • +
      +
    +
    + + + +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + setup +
    + (s) +
    +
    +
    +
    +
    + SMT time +
    + (s) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + setup +
    + (s) +
    +
    +
    +
    +
    + variable count +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + analysis +
    + (s) +
    +
    +
    +
    +
    + SMT time +
    + (s) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + analysis +
    + (s) +
    +
    +
    +
    +
    + variable count +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for multi-table-with-columns.table.html Compare StatisticsTable using js-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M + + + CPAchecker + + 1.4-svn 15986M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET + + 2015-03-03 18:15:20 CET +
    + Run set + + + predicateAnalysis + + valueAnalysis + + predicateAnalysis + + valueAnalysis +
    + Options + + +
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      + + -noout + + +
    • -
      -
      -
      + + -setprop log.consoleLevel=WARNING + +
    • +
    • + + -predicateAnalysis + +
    • +
    + +
    +
      -
      +
        -
        -
        -
        -
        - - -
        -
        -
        + -noout + + +
      • -
        - - -
        -
      • -
        + -setprop log.consoleLevel=WARNING + + +
      • -
        - - -
        -
      • -
        + -valueAnalysis + + +
      +
    +
    +
      -
      +
        -
        -
        -
        -
        -
        -
        + + -noout + + +
      • -
        -
        -
        + + -setprop log.consoleLevel=WARNING + +
      • +
      • -
        -
        -
      • -
        + + -predicateAnalysis + + +
      +
    +
    +
      -
      -
      -
      -
      + + -noout + + +
    • + + -setprop log.consoleLevel=WARNING + +
    • +
    • + + -valueAnalysis + +
    • +
    + +
    + + + +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + setup +
    + (s) +
    +
    +
    +
    +
    + SMT time +
    + (s) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + setup +
    + (s) +
    +
    +
    +
    +
    + variable count +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + analysis +
    + (s) +
    +
    +
    +
    +
    + SMT time +
    + (s) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + analysis +
    + (s) +
    +
    +
    +
    +
    + variable count +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for multi-table-with-columns.table.html Compare StatisticsTable using python-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M + + + CPAchecker + + 1.4-svn 15986M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET + + 2015-03-03 18:15:20 CET +
    + Run set + + + predicateAnalysis + + valueAnalysis + + predicateAnalysis + + valueAnalysis +
    + Options + + +
      -
      +
        -
        -
        -
        -
        -
        -
        + + -noout + + +
      • + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -predicateAnalysis + +
      • +
      +
    +
    +
      -
      -
      -
      +
        -
        -
        -
        -
        + + -noout + + +
      • + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -valueAnalysis + +
      • +
      +
    +
    +
      -
      -
      -
      +
        -
        - - -
        -
      -
      + -noout + + +
    • -
      - - -
      -
    • -
      + -setprop log.consoleLevel=WARNING + + +
    • -
      - - -
      -
    • - -
      + -predicateAnalysis + + +
    + +
    +
      -
      -
      -
      -
      -
      + + -noout + + +
    • + + -setprop log.consoleLevel=WARNING + +
    • +
    • + + -valueAnalysis + +
    • +
    + +
    + + + +
    +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + setup +
    + (s) +
    +
    +
    +
    +
    + SMT time +
    + (s) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + setup +
    + (s) +
    +
    +
    +
    +
    + variable count +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + analysis +
    + (s) +
    +
    +
    +
    +
    + SMT time +
    + (s) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + analysis +
    + (s) +
    +
    +
    +
    +
    + variable count +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for multi-table-with-diff-over-column.diff.html Compare StatisticsTable using js-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M + + + CPAchecker + + 1.4-svn 15986M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET + + 2015-03-03 18:15:20 CET +
    + Run set + + + predicateAnalysis + + valueAnalysis + + predicateAnalysis + + valueAnalysis +
    + Options + + +
      -
      +
        -
        -
        -
        -
        - - -
        -
        -
        + -noout + + +
      • -
        - - -
        -
      • -
        + -setprop log.consoleLevel=WARNING + + +
      • -
        - - -
        -
      • -
        + -predicateAnalysis + + +
      +
    +
    +
      -
      +
        -
        -
        -
        -
        -
        -
        + + -noout + + +
      • -
        -
        -
        + + -setprop log.consoleLevel=WARNING + +
      • +
      • -
        -
        -
      • -
        + + -valueAnalysis + + +
      +
    +
    +
      -
      -
      -
      -
      -
      + + -noout + + +
    • -
      -
      -
      + + -setprop log.consoleLevel=WARNING + +
    • +
    • + + -predicateAnalysis + +
    • +
    + +
    +
      -
      -
      -
      +
        -
        -
        -
        -
        -
        -
        + + -noout + + +
      • -
        + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -valueAnalysis + +
      • +
      +
    +
    + + + +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + setup +
    + (s) +
    +
    +
    +
    +
    + SMT time +
    + (s) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + setup +
    + (s) +
    +
    +
    +
    +
    + variable count +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + setup +
    + (s) +
    +
    +
    +
    +
    + SMT time +
    + (s) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + setup +
    + (s) +
    +
    +
    +
    +
    + variable count +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for multi-table-with-diff-over-column.diff.html Compare StatisticsTable using python-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M + + + CPAchecker + + 1.4-svn 15986M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET + + 2015-03-03 18:15:20 CET +
    + Run set + + + predicateAnalysis + + valueAnalysis + + predicateAnalysis + + valueAnalysis +
    + Options + + +
      -
      -
      -
      -
      -
      + + -noout + + +
    • -
      -
      -
      + + -setprop log.consoleLevel=WARNING + +
    • +
    • -
      - - -
      -
    • -
      + -predicateAnalysis + + +
    + +
    +
      +
        -
        - - -
        - -
        + -noout + + +
      • -
        - - -
        -
      • -
        + -setprop log.consoleLevel=WARNING + + +
      • + + -valueAnalysis + +
      • +
      +
    +
    +
      -
      +
        -
        -
        -
        -
        - - -
        -
        -
        + -noout + + +
      • -
        - - -
        -
      • -
        + -setprop log.consoleLevel=WARNING + + +
      • + + -predicateAnalysis + +
      • +
      +
    +
    +
      +
        -
        + + -noout + + +
      • - - -
      • - -
        + -setprop log.consoleLevel=WARNING + + +
      • + + -valueAnalysis + +
      • +
      +
    +
    + + + +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + setup +
    + (s) +
    +
    +
    +
    +
    + SMT time +
    + (s) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + setup +
    + (s) +
    +
    +
    +
    +
    + variable count +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + setup +
    + (s) +
    +
    +
    +
    +
    + SMT time +
    + (s) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + setup +
    + (s) +
    +
    +
    +
    +
    + variable count +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    -
    -
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +

    + Generated by + + BenchExec (test) + +

    `; -exports[`StatisticsTable for union-table-mixed.diff.html Compare StatisticsTable using python-computed stats 1`] = ` +exports[`StatisticsTable for multi-table-with-diff-over-column.table.html Compare StatisticsTable using js-computed stats 1`] = `

    - Statistics + Benchmark Setup

    -
    -
    -
    + -
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    -
    +
    + + + CPAchecker + + 1.4-svn 15944M + + + CPAchecker + + 1.4-svn 15986M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET + + 2015-03-03 18:15:20 CET +
    + Run set + + + predicateAnalysis + + valueAnalysis + + predicateAnalysis + + valueAnalysis +
    + Options + + +
      -
      -
      - -
      -
      -
      -
      -
      - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
      + -noout + + +
    • -
    • -
      + + -setprop log.consoleLevel=WARNING + + +
    • + + -predicateAnalysis + +
    • +
    + +
    +
      -
      +
        - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
        -
        -
        -
        + + -noout + + +
      • - - CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis - -
        + -setprop log.consoleLevel=WARNING + +
      • +
      • -
      • -
        -
        + + -valueAnalysis + + +
      +
    +
    +
      -
      - - Click here to select columns - -
      -
      -
      - -
      -
      -
      - status -
      -
      + -noout + + +
    • -
    • -
      -
      - cputime -
      - (s) -
      -
      + -setprop log.consoleLevel=WARNING + + +
    • -
    • -
      + + -predicateAnalysis + + +
    + +
    +
      +
        -
        - walltime -
        - (s) -
        -
        -
        -
        -
        - memory -
        - (MB) -
        -
        + -noout + + +
      • -
      • -
        + + -setprop log.consoleLevel=WARNING + + +
      • + + -valueAnalysis + +
      • +
      +
    +
    + + + +
    +
    - +
    +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + setup +
    + (s) +
    +
    +
    +
    +
    + SMT time +
    + (s) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    - status +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + setup +
    + (s) +
    +
    +
    +
    +
    + variable count +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    +
    +
    +
    - cputime -
    - (s) +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + setup +
    + (s) +
    +
    +
    +
    +
    + SMT time +
    + (s) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    +
    +
    +
    - walltime -
    - (s) +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + setup +
    + (s) +
    +
    +
    +
    +
    + variable count +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for multi-table-with-diff-over-column.table.html Compare StatisticsTable using python-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M + + + CPAchecker + + 1.4-svn 15986M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET + + 2015-03-03 18:15:20 CET +
    + Run set + + + predicateAnalysis + + valueAnalysis + + predicateAnalysis + + valueAnalysis +
    + Options + + +
      +
        -
        - memory -
        - (MB) -
        -
        -
        -
        - -
        -
        -
        - status -
        -
        + -noout + + +
      • -
      • -
        -
        - cputime -
        - (s) -
        -
        + -setprop log.consoleLevel=WARNING + + +
      • -
      • -
        + + -predicateAnalysis + + +
      +
    +
    +
      +
        -
        - walltime -
        - (s) -
        -
        -
        -
        + + -noout + + +
      • -
        - memory -
        - (MB) -
        -
        + -setprop log.consoleLevel=WARNING + +
      • +
      • -
      • - - -
        + + -valueAnalysis + + +
      +
    +
    -
    -
    -
    -
    -
    -
    + + -noout + + +
  • -
    -
    -
    + + -setprop log.consoleLevel=WARNING + +
  • +
  • + + -predicateAnalysis + +
  • + + +
    +
      -
      -
      -
      +
        -
        -
        -
        -
        -
        -
        + + -noout + + +
      • -
        + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -valueAnalysis + +
      • +
      +
    +
    + + + +
    +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + setup +
    + (s) +
    +
    +
    +
    +
    + SMT time +
    + (s) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + setup +
    + (s) +
    +
    +
    +
    +
    + variable count +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + setup +
    + (s) +
    +
    +
    +
    +
    + SMT time +
    + (s) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + setup +
    + (s) +
    +
    +
    +
    +
    + variable count +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for multi-table-with-wildcards.diff.html Compare StatisticsTable using js-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M + + + CPAchecker + + 1.4-svn 15986M + + + CPAchecker + + 1.4-svn 15944M + + + CPAchecker + + 1.4-svn 15986M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET + + 2015-03-03 18:15:20 CET + + 2015-03-03 16:13:02 CET + + 2015-03-03 18:15:20 CET +
    + Run set + + + predicateAnalysis + + predicateAnalysis + + valueAnalysis + + valueAnalysis +
    + Options + + +
      -
      +
        -
        -
        -
        -
        -
        -
        + + -noout + + +
      • -
        -
        -
        + + -setprop log.consoleLevel=WARNING + +
      • +
      • -
        -
        -
      • -
        + + -predicateAnalysis + + +
      +
    +
    +
      -
      -
      -
      -
      -
      + + -noout + + +
    • -
      -
      -
      + + -setprop log.consoleLevel=WARNING + +
    • +
    • + + -predicateAnalysis + +
    • +
    + +
    +
      -
      -
      -
      +
        -
        -
        -
        -
        -
        -
        + + -noout + + +
      • -
        + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -valueAnalysis + +
      • +
      +
    +
    +
      -
      -
      -
      +
        -
        -
        -
        -
        -
        -
        + + -noout + + +
      • -
        -
        -
        + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -valueAnalysis + +
      • +
      +
    +
    + + + +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for multi-table-with-wildcards.diff.html Compare StatisticsTable using python-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M + + + CPAchecker + + 1.4-svn 15986M + + + CPAchecker + + 1.4-svn 15944M + + + CPAchecker + + 1.4-svn 15986M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET + + 2015-03-03 18:15:20 CET + + 2015-03-03 16:13:02 CET + + 2015-03-03 18:15:20 CET +
    + Run set + + + predicateAnalysis + + predicateAnalysis + + valueAnalysis + + valueAnalysis +
    + Options + + +
      -
      -
      -
      -
      -
      + + -noout + + +
    • -
      -
      -
      + + -setprop log.consoleLevel=WARNING + +
    • +
    • + + -predicateAnalysis + +
    • +
    + +
    +
      -
      -
      -
      +
        -
        -
        -
        -
        -
        -
        + + -noout + + +
      • -
        + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -predicateAnalysis + +
      • +
      +
    +
    +
      -
      -
      -
      +
        -
        - - -
        -
      -
      + -noout + + +
    • -
      - - -
      -
    • -
      + -setprop log.consoleLevel=WARNING + + +
    • + + -valueAnalysis + +
    • +
    + +
    +
      +
        -
        - - -
        - -
        + -noout + + +
      • -
        + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -valueAnalysis + +
      • +
      +
    +
    + + + +
    +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for multi-table-with-wildcards.table.html Compare StatisticsTable using js-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M + + + CPAchecker + + 1.4-svn 15986M + + + CPAchecker + + 1.4-svn 15944M + + + CPAchecker + + 1.4-svn 15986M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET + + 2015-03-03 18:15:20 CET + + 2015-03-03 16:13:02 CET + + 2015-03-03 18:15:20 CET +
    + Run set + + + predicateAnalysis + + predicateAnalysis + + valueAnalysis + + valueAnalysis +
    + Options + + +
      -
      -
      -
      -
      -
      -
      -
      -
      -
      - - -
      -
      -
      + -noout + + +
    • -
      - - -
      -
    • -
      + -setprop log.consoleLevel=WARNING + + +
    • -
      - - -
      -
    • -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      + -predicateAnalysis + + +
    + +
    +
      -
      +
        -
        -
        -
        -
        - - -
        -
        -
        + -noout + + +
      • -
        - - -
        -
      • -
        + -setprop log.consoleLevel=WARNING + + +
      • -
        - - -
        -
      • -
      -
      + -predicateAnalysis + + +
    + +
    +
      -
      -
      -
      -
      -
      + + -noout + + +
    • -
      -
      -
      + + -setprop log.consoleLevel=WARNING + +
    • +
    • + + -valueAnalysis + +
    • +
    + +
    +
      -
      -
      -
      +
        -
        -
        -
        -
        -
        -
        + + -noout + + +
      • -
        + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -valueAnalysis + +
      • +
      +
    +
    + + + +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for multi-table-with-wildcards.table.html Compare StatisticsTable using python-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M + + + CPAchecker + + 1.4-svn 15986M + + + CPAchecker + + 1.4-svn 15944M + + + CPAchecker + + 1.4-svn 15986M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET + + 2015-03-03 18:15:20 CET + + 2015-03-03 16:13:02 CET + + 2015-03-03 18:15:20 CET +
    + Run set + + + predicateAnalysis + + predicateAnalysis + + valueAnalysis + + valueAnalysis +
    + Options + + +
      -
      +
        -
        -
        -
        -
        - - -
        -
        -
        + -noout + + +
      • -
        - - -
        -
      • -
        + -setprop log.consoleLevel=WARNING + + +
      • -
        - - -
        -
      • -
        + -predicateAnalysis + + +
      +
    +
    +
      -
      +
        -
        -
        -
        -
        -
        -
        + + -noout + + +
      • -
        -
        -
        + + -setprop log.consoleLevel=WARNING + +
      • +
      • -
        -
        -
      • -
        + + -predicateAnalysis + + +
      +
    +
    +
      -
      -
      -
      -
      -
      -
      -
      -
      -
      - - -
      -
      -
      + -noout + + +
    • -
      - - -
      -
    • -
      + -setprop log.consoleLevel=WARNING + + +
    • -
      - - -
      -
    • -
      + -valueAnalysis + + +
    + +
    +
      -
      +
        -
        -
        -
        -
        - - -
        -
        -
        + -noout + + +
      • -
        - - -
        -
      • -
        + -setprop log.consoleLevel=WARNING + + +
      • -
        - - -
        -
      • -
        + -valueAnalysis + + +
      +
    +
    + + + +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    -
    -
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +

    + Generated by + + BenchExec (test) + +

    `; -exports[`StatisticsTable for union-table-mixed.table.html Compare StatisticsTable using js-computed stats 1`] = ` +exports[`StatisticsTable for nan_and_inf.html Compare StatisticsTable using js-computed stats 1`] = `

    - Statistics + Benchmark Setup

    -
    -
    -
    + -
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    -
    +
    + + + CPAchecker + + 1.7-svn 28500M +
    + Limits + + + timelimit: 900 s, memlimit: 15000 MB, CPU core limit: 2 +
    + Host + + + apollon* +
    + OS + + + Linux 4.4.0-128-generic +
    + System + + + CPU: Intel Xeon E3-1230 v5 @ 3.40 GHz, cores: 8, frequency: 3.8 GHz, Turbo Boost: disabled; RAM: 33553 MB +
    + Date of execution + + + 2018-06-27 14:40:12 CEST +
    + Run set + + + Model-Based-Selection +
    + Options + + +
      -
      -
      - -
      -
      -
      -
      -
      - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
      + -heap 10000M + + +
    • -
    • -
      -
      - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
      + -benchmark + + +
    • -
    • -
      + + -configselection-heuristic + + +
    + +
    + Properties + + + unreach-call +
    + + + +
    - - CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis -
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    + Aliasing +
    +
    +
    +
    +
    + Arrays +
    +
    +
    +
    +
    + Boolean +
    +
    +
    +
    +
    + Composite types +
    +
    +
    +
    +
    + Floats +
    +
    +
    +
    +
    + Loops +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for nan_and_inf.html Compare StatisticsTable using python-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.7-svn 28500M +
    + Limits + + + timelimit: 900 s, memlimit: 15000 MB, CPU core limit: 2 +
    + Host + + + apollon* +
    + OS + + + Linux 4.4.0-128-generic +
    + System + + + CPU: Intel Xeon E3-1230 v5 @ 3.40 GHz, cores: 8, frequency: 3.8 GHz, Turbo Boost: disabled; RAM: 33553 MB +
    + Date of execution + + + 2018-06-27 14:40:12 CEST +
    + Run set + + + Model-Based-Selection +
    + Options + + +
      -
      - - Click here to select columns - -
      -
      -
      - -
      -
      -
      - status -
      -
      + -heap 10000M + + +
    • -
    • -
      -
      - cputime -
      - (s) -
      -
      + -benchmark + + +
    • -
    • -
      -
      - walltime -
      - (s) -
      -
      -
      -
      + -configselection-heuristic + + +
    + +
    + Properties + + + unreach-call +
    + + + +
    +
    - memory -
    - (MB) +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    + Aliasing +
    +
    +
    +
    +
    + Arrays +
    +
    +
    +
    +
    + Boolean +
    +
    +
    +
    +
    + Composite types +
    +
    +
    +
    +
    + Floats +
    +
    +
    +
    +
    + Loops +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for predicateAnalysis.table.html Compare StatisticsTable using js-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M + + + CPAchecker + + 1.4-svn 15986M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET + + 2015-03-03 18:15:20 CET +
    + Run set + + + predicateAnalysis + + predicateAnalysis +
    + Options + + +
      - - -
      +
        -
        - status -
        -
        -
        -
        -
        - cputime -
        - (s) -
        -
        + -noout + + +
      • -
      • -
        -
        - walltime -
        - (s) -
        -
        + -setprop log.consoleLevel=WARNING + + +
      • -
      • -
        -
        - memory -
        - (MB) -
        -
        -
        -
        + -predicateAnalysis + + +
      +
    +
    +
      - - -
      +
        -
        - status -
        -
        -
        -
        -
        - cputime -
        - (s) -
        -
        + -noout + + +
      • -
      • -
        -
        - walltime -
        - (s) -
        -
        + -setprop log.consoleLevel=WARNING + + +
      • -
      • -
        -
        - memory -
        - (MB) -
        -
        -
        -
        -
        -
        + -predicateAnalysis + + +
      +
    +
    -
    + Click here to select columns + +
    + +
    -
    -
    -
    -
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for predicateAnalysis.table.html Compare StatisticsTable using python-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M + + + CPAchecker + + 1.4-svn 15986M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET + + 2015-03-03 18:15:20 CET +
    + Run set + + + predicateAnalysis + + predicateAnalysis +
    + Options + + +
      -
      -
      -
      +
        -
        -
        -
        -
        -
        -
        -
        + + -noout + + +
      • -
        -
        -
        + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -predicateAnalysis + +
      • +
      +
    +
    +
      -
      -
      -
      +
        -
        -
        -
        -
        + + -noout + + +
      • -
        -
        -
        + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -predicateAnalysis + +
      • +
      +
    +
    + + + +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for predicateAnalysis-reverse.table.html Compare StatisticsTable using js-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15986M + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 18:15:20 CET + + 2015-03-03 16:13:02 CET +
    + Run set + + + predicateAnalysis + + predicateAnalysis +
    + Options + + +
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      + + -noout + + +
    • -
      -
      -
      + + -setprop log.consoleLevel=WARNING + +
    • +
    • + + -predicateAnalysis + +
    • +
    + +
    +
      -
      -
      -
      +
        -
        -
        -
        -
        + + -noout + + +
      • -
        -
        -
        + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -predicateAnalysis + +
      • +
      +
    +
    + + + +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for predicateAnalysis-reverse.table.html Compare StatisticsTable using python-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15986M + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 18:15:20 CET + + 2015-03-03 16:13:02 CET +
    + Run set + + + predicateAnalysis + + predicateAnalysis +
    + Options + + +
      -
      -
      -
      -
      -
      -
      -
      -
      + + -noout + + +
    • -
      -
      -
      + + -setprop log.consoleLevel=WARNING + +
    • +
    • + + -predicateAnalysis + +
    • +
    + +
    +
      -
      -
      -
      +
        -
        -
        -
        -
        -
        -
        -
        + + -noout + + +
      • -
        - - -
        -
      • -
        + -setprop log.consoleLevel=WARNING + + +
      • + + -predicateAnalysis + +
      • +
      +
    +
    + + + +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for rows-with-scores.html Compare StatisticsTable using js-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + +
    + Limits + + + timelimit: -, memlimit: -, CPU core limit: - +
    + Host + + + t460p +
    + OS + + + Linux-5.0.0-37-generic-x86_64-with-Ubuntu-18.04-bionic + + Linux-5.3.0-53-generic-x86_64-with-Ubuntu-18.04-bionic +
    + System + + + CPU: Intel Core i5-6440HQ CPU @ 2.60GHz, cores: 4, frequency: 3500 MHz, Turbo Boost: enabled; RAM: 33587 MB + + CPU: Intel Core i5-6440HQ CPU @ 2.60GHz, cores: 4, frequency: 3500 MHz, Turbo Boost: enabled; RAM: 33537 MB +
    + Date of execution + + + 2019-12-20 15:32:33 CET + + 2020-06-10 09:17:06 CEST +
    + Run set + + + 0 + + 0 +
    + Options + + +
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      + + true + + +
    + +
    +
      -
      +
        -
        -
        -
        + + true + + +
      +
    +
    + Properties + + + test +
    + + + +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    + cpuenergy +
    + (J) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    + cpuenergy +
    + (J) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for rows-with-scores.html Compare StatisticsTable using python-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + +
    + Limits + + + timelimit: -, memlimit: -, CPU core limit: - +
    + Host + + + t460p +
    + OS + + + Linux-5.0.0-37-generic-x86_64-with-Ubuntu-18.04-bionic + + Linux-5.3.0-53-generic-x86_64-with-Ubuntu-18.04-bionic +
    + System + + + CPU: Intel Core i5-6440HQ CPU @ 2.60GHz, cores: 4, frequency: 3500 MHz, Turbo Boost: enabled; RAM: 33587 MB + + CPU: Intel Core i5-6440HQ CPU @ 2.60GHz, cores: 4, frequency: 3500 MHz, Turbo Boost: enabled; RAM: 33537 MB +
    + Date of execution + + + 2019-12-20 15:32:33 CET + + 2020-06-10 09:17:06 CEST +
    + Run set + + + 0 + + 0 +
    + Options + + +
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      + + true + + +
    + +
    +
      -
      +
        -
        -
        -
        -
        - - -
        -
        -
        + true + + +
      +
    +
    + Properties + + + test +
    + + + +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    + cpuenergy +
    + (J) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    + cpuenergy +
    + (J) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for simple-table-with-columns.table.html Compare StatisticsTable using js-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + predicateAnalysis +
    + Options + + +
      -
      -
      -
      -
      -
      -
      -
      -
      + + -noout + + +
    • -
      -
      -
      + + -setprop log.consoleLevel=WARNING + +
    • +
    • + + -predicateAnalysis + +
    • +
    + +
    + + + +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + CPU Time +
    + (s) +
    +
    +
    +
    +
    + setup +
    + (s) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    -
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for simple-table-with-columns.table.html Compare StatisticsTable using python-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + predicateAnalysis +
    + Options + + +
      -
      -
      -
      +
        -
        - - -
        -
      -
      + -noout + + +
    • -
      - - -
      -
    • -
      + -setprop log.consoleLevel=WARNING + + +
    • + + -predicateAnalysis + +
    • +
    + +
    + + + +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + CPU Time +
    + (s) +
    +
    +
    +
    +
    + setup +
    + (s) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for simple-table-with-links.table.html Compare StatisticsTable using js-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + predicateAnalysis +
    + Options + + +
      -
      +
        -
        -
        -
        -
        -
        -
        + + -noout + + +
      • -
        -
        -
        + + -setprop log.consoleLevel=WARNING + +
      • +
      • -
        -
        -
      • -
        + + -predicateAnalysis + + +
      +
    +
    + + + +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for simple-table-with-links.table.html Compare StatisticsTable using python-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + predicateAnalysis +
    + Options + + +
      -
      +
        -
        -
        -
        -
        - - -
        -
        -
        + -noout + + +
      • -
        - - -
        -
      • -
        + -setprop log.consoleLevel=WARNING + + +
      • + + -predicateAnalysis + +
      • +
      +
    +
    + + + +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for simple-table-with-numberOfDigits.table.html Compare StatisticsTable using js-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + predicateAnalysis +
    + Options + + +
      -
      +
        -
        -
        -
        -
        - - -
        -
        -
        + -noout + + +
      • -
        - - -
        -
      • -
        + -setprop log.consoleLevel=WARNING + + +
      • + + -predicateAnalysis + +
      • +
      +
    +
    + + + +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for simple-table-with-numberOfDigits.table.html Compare StatisticsTable using python-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + predicateAnalysis +
    + Options + + +
      -
      +
        -
        -
        -
        -
        - - -
        -
        -
        + -noout + + +
      • -
        - - -
        -
      • -
        + -setprop log.consoleLevel=WARNING + + +
      • + + -predicateAnalysis + +
      • +
      +
    +
    + + + +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    -
    -
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +

    + Generated by + + BenchExec (test) + +

    `; -exports[`StatisticsTable for union-table-mixed.table.html Compare StatisticsTable using python-computed stats 1`] = ` +exports[`StatisticsTable for simple-table-with-scaling.table.html Compare StatisticsTable using js-computed stats 1`] = `

    - Statistics + Benchmark Setup

    -
    -
    -
    + -
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    -
    +
    + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + predicateAnalysis +
    + Options + + +
      -
      -
      - -
      -
      -
      -
      -
      - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
      + -noout + + +
    • -
    • -
      -
      - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
      + -setprop log.consoleLevel=WARNING + + +
    • -
    • -
      + + -predicateAnalysis + + +
    + +
    + + + +
    - - CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis -
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (ms) +
    +
    +
    +
    +
    + cputime-h +
    + (h) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (ns) +
    +
    +
    +
    +
    + walltime +
    + (Gs) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    + memory-GB +
    + (GB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for simple-table-with-scaling.table.html Compare StatisticsTable using python-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + predicateAnalysis +
    + Options + + +
      -
      - - Click here to select columns - -
      -
      -
      - -
      -
      -
      - status -
      -
      -
      -
      -
      - cputime -
      - (s) -
      -
      + -noout + + +
    • -
    • -
      -
      - walltime -
      - (s) -
      -
      + -setprop log.consoleLevel=WARNING + + +
    • -
    • -
      -
      - memory -
      - (MB) -
      -
      -
      -
      + -predicateAnalysis + + +
    + +
    + + + +
    - status +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (ms) +
    +
    +
    +
    +
    + cputime-h +
    + (h) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (ns) +
    +
    +
    +
    +
    + walltime +
    + (Gs) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    + memory-GB +
    + (GB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for smt.diff.html Compare StatisticsTable using js-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + MathSAT5.3.5 + + SMTInterpol2.1-183-g4d3bb9f +
    + Limits + + + timelimit: 10 s, memlimit: 100 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-53-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389436 kB +
    + Date of execution + + + 2015-05-27 10:04:55 CEST + + 2015-05-27 10:04:27 CEST +
    + Run set + + + mathsat + + smtinterpol +
    + Properties + + + sat +
    + + + +
    - walltime -
    - (s) +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    -
    +
    +
    +
    - memory -
    - (MB) +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    -
    -
    +
    + all results + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for smt.diff.html Compare StatisticsTable using python-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + MathSAT5.3.5 + + SMTInterpol2.1-183-g4d3bb9f +
    + Limits + + + timelimit: 10 s, memlimit: 100 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-53-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389436 kB +
    + Date of execution + + + 2015-05-27 10:04:55 CEST + + 2015-05-27 10:04:27 CEST +
    + Run set + + + mathsat + + smtinterpol +
    + Properties + + + sat +
    + + + +
    - status +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    -
    +
    +
    +
    - cputime -
    - (s) +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    -
    -
    +
    + all results + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for smt.table.html Compare StatisticsTable using js-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + MathSAT5.3.5 + + SMTInterpol2.1-183-g4d3bb9f +
    + Limits + + + timelimit: 10 s, memlimit: 100 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-53-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389436 kB +
    + Date of execution + + + 2015-05-27 10:04:55 CEST + + 2015-05-27 10:04:27 CEST +
    + Run set + + + mathsat + + smtinterpol +
    + Properties + + + sat +
    + + + +
    +
    - walltime -
    - (s) +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    -
    +
    +
    +
    - memory -
    - (MB) +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    -
    -
    -
    +
    -
    +
    +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for smt.table.html Compare StatisticsTable using python-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + MathSAT5.3.5 + + SMTInterpol2.1-183-g4d3bb9f +
    + Limits + + + timelimit: 10 s, memlimit: 100 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-53-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389436 kB +
    + Date of execution + + + 2015-05-27 10:04:55 CEST + + 2015-05-27 10:04:27 CEST +
    + Run set + + + mathsat + + smtinterpol +
    + Properties + + + sat +
    + + + +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for task-def-files.table.html Compare StatisticsTable using js-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + DummyTool +
    + Limits + + + timelimit: -, memlimit: -, CPU core limit: - +
    + Host + + + t460p +
    + OS + + + Linux-5.0.0-37-generic-x86_64-with-Ubuntu-18.04-bionic + + Linux-5.3.0-53-generic-x86_64-with-Ubuntu-18.04-bionic +
    + System + + + CPU: Intel Core i5-6440HQ CPU @ 2.60GHz, cores: 4, frequency: 3500 MHz, Turbo Boost: enabled; RAM: 33587 MB + + CPU: Intel Core i5-6440HQ CPU @ 2.60GHz, cores: 4, frequency: 3500 MHz, Turbo Boost: enabled; RAM: 33537 MB +
    + Date of execution + + + 2019-12-20 15:32:33 CET + + 2020-06-10 09:17:06 CEST +
    + Run set + + + 0 + + 0 +
    + Options + + +
      -
      -
      -
      +
        -
        -
        -
        + + true + + +
      +
    +
    +
      -
      +
        -
        -
        -
        + + true + + +
      +
    +
    + Properties + + + test +
    + + + +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    + cpuenergy +
    + (J) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    + cpuenergy +
    + (J) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for task-def-files.table.html Compare StatisticsTable using python-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + DummyTool +
    + Limits + + + timelimit: -, memlimit: -, CPU core limit: - +
    + Host + + + t460p +
    + OS + + + Linux-5.0.0-37-generic-x86_64-with-Ubuntu-18.04-bionic + + Linux-5.3.0-53-generic-x86_64-with-Ubuntu-18.04-bionic +
    + System + + + CPU: Intel Core i5-6440HQ CPU @ 2.60GHz, cores: 4, frequency: 3500 MHz, Turbo Boost: enabled; RAM: 33587 MB + + CPU: Intel Core i5-6440HQ CPU @ 2.60GHz, cores: 4, frequency: 3500 MHz, Turbo Boost: enabled; RAM: 33537 MB +
    + Date of execution + + + 2019-12-20 15:32:33 CET + + 2020-06-10 09:17:06 CEST +
    + Run set + + + 0 + + 0 +
    + Options + + +
      -
      -
      -
      -
      + + true + + +
    + +
    +
      -
      +
        -
        -
        -
        + + true + + +
      +
    +
    + Properties + + + test +
    + + + +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    + cpuenergy +
    + (J) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    + cpuenergy +
    + (J) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for test.2015-03-03_1613.diff.html Compare StatisticsTable using js-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + predicateAnalysis + + valueAnalysis +
    + Options + + +
      -
      +
        -
        -
        -
        -
        -
        -
        + + -noout + + +
      • + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -predicateAnalysis + +
      • +
      +
    +
    +
      -
      -
      -
      +
        -
        -
        -
        -
        + + -noout + + +
      • -
        -
        -
        + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -valueAnalysis + +
      • +
      +
    +
    + + + +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for test.2015-03-03_1613.diff.html Compare StatisticsTable using python-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + predicateAnalysis + + valueAnalysis +
    + Options + + +
      -
      -
      -
      -
      -
      -
      -
      -
      + + -noout + + +
    • -
      -
      -
      + + -setprop log.consoleLevel=WARNING + +
    • +
    • + + -predicateAnalysis + +
    • +
    + +
    +
      -
      -
      -
      +
        -
        -
        -
        -
        -
        -
        -
        + + -noout + + +
      • -
        - - -
        -
      • -
        + -setprop log.consoleLevel=WARNING + + +
      • + + -valueAnalysis + +
      • +
      +
    +
    + + + +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for test.2015-03-03_1613.results.predicateAnalysis.all-columns.html Compare StatisticsTable using js-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + predicateAnalysis +
    + Options + + +
      -
      +
        -
        -
        -
        -
        -
        -
        + + -noout + + +
      • -
        -
        -
        + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -predicateAnalysis + +
      • +
      +
    +
    + + + +
    +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    + exitcode +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for test.2015-03-03_1613.results.predicateAnalysis.all-columns.html Compare StatisticsTable using python-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + predicateAnalysis +
    + Options + + +
      -
      -
      -
      -
      -
      -
      -
      -
      + + -noout + + +
    • -
      -
      -
      + + -setprop log.consoleLevel=WARNING + +
    • +
    • + + -predicateAnalysis + +
    • +
    + +
    + + + +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    + exitcode +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for test.2015-03-03_1613.results.predicateAnalysis.correct-only.html Compare StatisticsTable using js-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + predicateAnalysis +
    + Options + + +
      -
      +
        -
        -
        -
        -
        -
        -
        + + -noout + + +
      • -
        -
        -
        + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -predicateAnalysis + +
      • +
      +
    +
    + + + +
    +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for test.2015-03-03_1613.results.predicateAnalysis.correct-only.html Compare StatisticsTable using python-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + predicateAnalysis +
    + Options + + +
      -
      +
        -
        -
        -
        -
        -
        -
        + + -noout + + +
      • -
        -
        -
        + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -predicateAnalysis + +
      • +
      +
    +
    + + + +
    +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for test.2015-03-03_1613.results.predicateAnalysis.custom-score.html Compare StatisticsTable using js-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + predicateAnalysis.0 +
    + Options + + +
      -
      -
      -
      -
      -
      -
      -
      -
      + + -noout + + +
    • -
      -
      -
      + + -setprop log.consoleLevel=WARNING + +
    • +
    • + + -predicateAnalysis + +
    • +
    + +
    + Properties + + + unreach-label +
    + + + +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    + score +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for test.2015-03-03_1613.results.predicateAnalysis.custom-score.html Compare StatisticsTable using python-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + predicateAnalysis.0 +
    + Options + + +
      -
      +
        -
        -
        -
        -
        - - -
        -
        -
        + -noout + + +
      • -
        - - -
        -
      • -
        + -setprop log.consoleLevel=WARNING + + +
      • -
        - - -
        -
      • -
        -
        -
        -
        -
        -
        -
        -
        + -predicateAnalysis + + +
      +
    +
    + Properties + + + unreach-label +
    + + + +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    + score +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for test.2015-03-03_1613.results.predicateAnalysis.html Compare StatisticsTable using js-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + predicateAnalysis +
    + Options + + +
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      - - -
      -
      -
      + -noout + + +
    • -
      - - -
      -
    • -
      + -setprop log.consoleLevel=WARNING + + +
    • -
      - - -
      -
    • -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      + -predicateAnalysis + + +
    + +
    + + + +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    -
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for test.2015-03-03_1613.results.predicateAnalysis.html Compare StatisticsTable using python-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + predicateAnalysis +
    + Options + + +
      -
      -
      -
      +
        -
        - - -
        -
      -
      -
      - - -
      -
      -
      + -noout + + +
    • -
      - - -
      -
    • -
      -
      -
      -
      -
      + -setprop log.consoleLevel=WARNING + + +
    • -
      - - -
      -
    • -
      + -predicateAnalysis + + +
    + +
    + + + +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for test.2015-03-03_1613.results.valueAnalysis.html Compare StatisticsTable using js-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + valueAnalysis +
    + Options + + +
      -
      +
        -
        -
        -
        -
        - - -
        -
        -
        + -noout + + +
      • -
        - - -
        -
      • -
        + -setprop log.consoleLevel=WARNING + + +
      • + + -valueAnalysis + +
      • +
      +
    +
    + + + +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    -
    -
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +

    + Generated by + + BenchExec (test) + +

    `; -exports[`StatisticsTable for union-table-multiple-results.diff.html Compare StatisticsTable using js-computed stats 1`] = ` +exports[`StatisticsTable for test.2015-03-03_1613.results.valueAnalysis.html Compare StatisticsTable using python-computed stats 1`] = `

    - Statistics + Benchmark Setup

    -
    -
    -
    + -
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    -
    +
    + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + valueAnalysis +
    + Options + + +
      -
      -
      - -
      -
      -
      -
      -
      - - CPAchecker [2015-03-03 16:13:02 CET; 2015-03-03 18:15:20 CET] predicateAnalysis - -
      + -noout + + +
    • -
    • -
      -
      - - CPAchecker [2015-03-03 16:13:02 CET; 2015-03-03 18:15:20 CET] valueAnalysis - -
      + -setprop log.consoleLevel=WARNING + + +
    • + > + + -valueAnalysis + +
    • +
    + +
    + + + +
    +
    +
    +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for test.2015-03-03_1613.results.valueAnalysis.table.html Compare StatisticsTable using js-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + valueAnalysis +
    + Options + + +
      -
      - - Click here to select columns - -
      -
      -
      - -
      -
      -
      - status -
      -
      + -noout + + +
    • -
    • -
      -
      - cputime -
      - (s) -
      -
      + -setprop log.consoleLevel=WARNING + + +
    • -
    • -
      -
      - walltime -
      - (s) -
      -
      -
      -
      + -valueAnalysis + + +
    + +
    + + + +
    +
    - memory -
    - (MB) +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for test.2015-03-03_1613.results.valueAnalysis.table.html Compare StatisticsTable using python-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + valueAnalysis +
    + Options + + +
      - - -
      +
        -
        - status -
        -
        -
        -
        -
        - cputime -
        - (s) -
        -
        + -noout + + +
      • -
      • -
        -
        - walltime -
        - (s) -
        -
        + -setprop log.consoleLevel=WARNING + + +
      • -
      • -
        -
        - memory -
        - (MB) -
        -
        -
        -
        -
        -
        + -valueAnalysis + + +
      +
    +
    -
    + Click here to select columns + +
    + +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for test.2015-03-03_1613.table.html Compare StatisticsTable using js-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + predicateAnalysis + + valueAnalysis +
    + Options + + +
      -
      +
        -
        -
        -
        -
        -
        -
        + + -noout + + +
      • -
        -
        -
        + + -setprop log.consoleLevel=WARNING + +
      • +
      • -
        -
        -
      • -
        + + -predicateAnalysis + + +
      +
    +
    +
      -
      -
      -
      -
      -
      + + -noout + + +
    • -
      -
      -
      + + -setprop log.consoleLevel=WARNING + +
    • +
    • + + -valueAnalysis + +
    • +
    + +
    + + + +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for test.2015-03-03_1613.table.html Compare StatisticsTable using python-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + predicateAnalysis + + valueAnalysis +
    + Options + + +
      -
      +
        -
        -
        -
        -
        - - -
        -
        -
        + -noout + + +
      • -
        - - -
        -
      • -
        + -setprop log.consoleLevel=WARNING + + +
      • -
        - - -
        -
      • -
      -
      + -predicateAnalysis + + +
    + +
    +
      -
      -
      -
      -
      -
      -
      -
      -
      + + -noout + + +
    • -
      - - -
      -
    • -
      + -setprop log.consoleLevel=WARNING + + +
    • + + -valueAnalysis + +
    • +
    + +
    + + + +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for test.2015-03-03_1613-common.diff.html Compare StatisticsTable using js-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + predicateAnalysis + + valueAnalysis +
    + Options + + +
      -
      -
      -
      -
      -
      -
      -
      -
      + + -noout + + +
    • -
      -
      -
      + + -setprop log.consoleLevel=WARNING + +
    • +
    • + + -predicateAnalysis + +
    • +
    + +
    +
      -
      -
      -
      +
        -
        -
        -
        -
        -
        -
        -
        + + -noout + + +
      • -
        - - -
        -
      • -
        + -setprop log.consoleLevel=WARNING + + +
      • + + -valueAnalysis + +
      • +
      +
    +
    + + + +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for test.2015-03-03_1613-common.diff.html Compare StatisticsTable using python-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + predicateAnalysis + + valueAnalysis +
    + Options + + +
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      - - -
      -
      -
      + -noout + + +
    • -
      - - -
      -
    • -
      + -setprop log.consoleLevel=WARNING + + +
    • -
      - - -
      -
    • -
      -
      + -predicateAnalysis + + +
    + +
    +
      -
      -
      -
      -
      -
      -
      -
      -
      -
      - - -
      -
      -
      + -noout + + +
    • -
      - - -
      -
    • -
      + -setprop log.consoleLevel=WARNING + + +
    • -
      - - -
      -
    • -
      -
      -
      -
      -
      + -valueAnalysis + + +
    + +
    + + + +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    -
    -
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +

    + Generated by + + BenchExec (test) + +

    `; -exports[`StatisticsTable for union-table-multiple-results.diff.html Compare StatisticsTable using python-computed stats 1`] = ` +exports[`StatisticsTable for test.2015-03-03_1613-common.table.html Compare StatisticsTable using js-computed stats 1`] = `

    - Statistics + Benchmark Setup

    -
    -
    -
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    -
    -
    +
    + + 2015-03-03 16:13:02 CET +
    + Run set + + + predicateAnalysis + + valueAnalysis +
    + Options + + +
      -
      -
      - -
      -
      -
      -
      -
      - - CPAchecker [2015-03-03 16:13:02 CET; 2015-03-03 18:15:20 CET] predicateAnalysis - -
      + -noout + + +
    • -
    • -
      -
      - - CPAchecker [2015-03-03 16:13:02 CET; 2015-03-03 18:15:20 CET] valueAnalysis - -
      + -setprop log.consoleLevel=WARNING + + +
    • -
    • -
      -
      + + -predicateAnalysis + + +
    + +
    +
      -
      - - Click here to select columns - -
      -
      -
      - -
      -
      -
      - status -
      -
      + -noout + + +
    • -
    • -
      -
      - cputime -
      - (s) -
      -
      + -setprop log.consoleLevel=WARNING + + +
    • -
    • -
      + + -valueAnalysis + + +
    + +
    + + + +
    +
    - walltime -
    - (s) +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    +
    +
    +
    - memory -
    - (MB) +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for test.2015-03-03_1613-common.table.html Compare StatisticsTable using python-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + predicateAnalysis + + valueAnalysis +
    + Options + + +
      - - -
      +
        -
        - status -
        -
        -
        -
        + + -noout + + +
      • -
        - cputime -
        - (s) -
        -
        + -setprop log.consoleLevel=WARNING + +
      • +
      • -
      • -
        + + -predicateAnalysis + + +
      +
    +
    +
      +
        -
        - walltime -
        - (s) -
        -
        -
        -
        + + -noout + + +
      • -
        - memory -
        - (MB) -
        -
        + -setprop log.consoleLevel=WARNING + +
      • +
      • -
      • - - -
        + + -valueAnalysis + + +
      +
    +
    -
    + Click here to select columns + +
    + +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for test.2015-03-03_1613-correct-only.diff.html Compare StatisticsTable using js-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + predicateAnalysis + + valueAnalysis +
    + Options + + +
      -
      -
      -
      -
      -
      -
      -
      -
      + + -noout + + +
    • -
      -
      -
      + + -setprop log.consoleLevel=WARNING + +
    • +
    • + + -predicateAnalysis + +
    • +
    + +
    +
      -
      -
      -
      +
        -
        -
        -
        -
        + + -noout + + +
      • -
        -
        -
        + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -valueAnalysis + +
      • +
      +
    +
    + + + +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for test.2015-03-03_1613-correct-only.diff.html Compare StatisticsTable using python-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + predicateAnalysis + + valueAnalysis +
    + Options + + +
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      + + -noout + + +
    • -
      -
      -
      + + -setprop log.consoleLevel=WARNING + +
    • +
    • + + -predicateAnalysis + +
    • +
    + +
    +
      -
      +
        -
        -
        -
        -
        - - -
        -
        -
        + -noout + + +
      • -
        - - -
        -
      • -
        + -setprop log.consoleLevel=WARNING + + +
      • -
        - - -
        -
      • -
      -
      + -valueAnalysis + + +
    + +
    + + + +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    -
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for test.2015-03-03_1613-correct-only.table.html Compare StatisticsTable using js-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + predicateAnalysis + + valueAnalysis +
    + Options + + +
      -
      - - -
      - -
      +
        -
        - - -
        -
      -
      + -noout + + +
    • -
      - - -
      -
    • -
      + -setprop log.consoleLevel=WARNING + + +
    • + + -predicateAnalysis + +
    • +
    + +
    +
      -
      +
        -
        -
        -
        -
        -
        -
        + + -noout + + +
      • + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -valueAnalysis + +
      • +
      +
    +
    + + + +
    +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for test.2015-03-03_1613-correct-only.table.html Compare StatisticsTable using python-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + predicateAnalysis + + valueAnalysis +
    + Options + + +
      -
      -
      -
      -
      -
      -
      -
      -
      + + -noout + + +
    • -
      -
      -
      + + -setprop log.consoleLevel=WARNING + +
    • +
    • + + -predicateAnalysis + +
    • +
    + +
    +
      -
      -
      -
      +
        -
        -
        -
        -
        -
        -
        -
        + + -noout + + +
      • -
        - - -
        -
      • -
        + -setprop log.consoleLevel=WARNING + + +
      • + + -valueAnalysis + +
      • +
      +
    +
    + + + +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for test.2015-03-03_1613-reverse.diff.html Compare StatisticsTable using js-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + valueAnalysis + + predicateAnalysis +
    + Options + + +
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      - - -
      -
      -
      + -noout + + +
    • -
      - - -
      -
    • -
      + -setprop log.consoleLevel=WARNING + + +
    • -
      - - -
      -
    • -
      -
      + -valueAnalysis + + +
    + +
    +
      -
      -
      -
      -
      -
      -
      -
      -
      -
      - - -
      -
      -
      + -noout + + +
    • -
      - - -
      -
    • -
      + -setprop log.consoleLevel=WARNING + + +
    • -
      - - -
      -
    • -
      -
      -
      -
      -
      + -predicateAnalysis + + +
    + +
    + + + +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    -
    -
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +

    + Generated by + + BenchExec (test) + +

    `; -exports[`StatisticsTable for union-table-multiple-results.table.html Compare StatisticsTable using js-computed stats 1`] = ` +exports[`StatisticsTable for test.2015-03-03_1613-reverse.diff.html Compare StatisticsTable using python-computed stats 1`] = `

    - Statistics + Benchmark Setup

    -
    -
    -
    + -
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    -
    +
    + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + valueAnalysis + + predicateAnalysis +
    + Options + + +
      -
      -
      - -
      -
      -
      -
      -
      - - CPAchecker [2015-03-03 16:13:02 CET; 2015-03-03 18:15:20 CET] predicateAnalysis - -
      + -noout + + +
    • -
    • -
      -
      - - CPAchecker [2015-03-03 16:13:02 CET; 2015-03-03 18:15:20 CET] valueAnalysis - -
      + -setprop log.consoleLevel=WARNING + + +
    • -
    • -
      -
      + + -valueAnalysis + + +
    + +
    +
      -
      - - Click here to select columns - -
      -
      -
      - -
      -
      -
      - status -
      -
      -
      -
      -
      - cputime -
      - (s) -
      -
      + -noout + + +
    • -
    • -
      -
      - walltime -
      - (s) -
      -
      + -setprop log.consoleLevel=WARNING + + +
    • -
    • -
      -
      - memory -
      - (MB) -
      -
      -
      -
      + -predicateAnalysis + + +
    + +
    + + + +
    - status +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    +
    +
    +
    - cputime -
    - (s) +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for test.2015-03-03_1613-reverse.table.html Compare StatisticsTable using js-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + valueAnalysis + + predicateAnalysis +
    + Options + + +
      +
        -
        - walltime -
        - (s) -
        -
        -
        -
        + + -noout + + +
      • -
        - memory -
        - (MB) -
        -
        + -setprop log.consoleLevel=WARNING + +
      • +
      • -
      • - - -
        + + -valueAnalysis + + +
      +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    + + -noout + + +
  • -
    -
    -
    + + -setprop log.consoleLevel=WARNING + +
  • +
  • + + -predicateAnalysis + +
  • + + +
    + + + +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for test.2015-03-03_1613-reverse.table.html Compare StatisticsTable using python-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + valueAnalysis + + predicateAnalysis +
    + Options + + +
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      + + -noout + + +
    • -
      -
      -
      + + -setprop log.consoleLevel=WARNING + +
    • +
    • -
      -
      -
    • -
      + + -valueAnalysis + + +
    + +
    +
      -
      -
      -
      -
      -
      + + -noout + + +
    • -
      -
      -
      + + -setprop log.consoleLevel=WARNING + +
    • +
    • + + -predicateAnalysis + +
    • +
    + +
    + + + +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for test-error.2015-03-03_1613.diff.html Compare StatisticsTable using js-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + predicateAnalysis + + valueAnalysis +
    + Options + + +
      -
      +
        -
        -
        -
        -
        - - -
        -
        -
        + -noout + + +
      • -
        - - -
        -
      • -
        + -setprop log.consoleLevel=WARNING + + +
      • -
        - - -
        -
      • -
      -
      + -predicateAnalysis + + +
    + +
    +
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      + + -noout + + +
    • -
      -
      -
      + + -setprop log.consoleLevel=WARNING + +
    • +
    • + + -valueAnalysis + +
    • +
    + +
    + + + +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for test-error.2015-03-03_1613.diff.html Compare StatisticsTable using python-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + predicateAnalysis + + valueAnalysis +
    + Options + + +
      -
      -
      -
      -
      -
      -
      -
      -
      + + -noout + + +
    • -
      -
      -
      + + -setprop log.consoleLevel=WARNING + +
    • +
    • + + -predicateAnalysis + +
    • +
    + +
    +
      -
      -
      -
      +
        -
        -
        -
        -
        -
        -
        -
        + + -noout + + +
      • -
        - - -
        -
      • -
        + -setprop log.consoleLevel=WARNING + + +
      • + + -valueAnalysis + +
      • +
      +
    +
    + + + +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for test-error.2015-03-03_1613.table.html Compare StatisticsTable using js-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + predicateAnalysis + + valueAnalysis +
    + Options + + +
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      - - -
      -
      -
      + -noout + + +
    • -
      - - -
      -
    • -
      + -setprop log.consoleLevel=WARNING + + +
    • -
      - - -
      -
    • -
      -
      + -predicateAnalysis + + +
    + +
    +
      -
      -
      -
      -
      -
      -
      -
      -
      -
      - - -
      -
      -
      + -noout + + +
    • -
      - - -
      -
    • -
      + -setprop log.consoleLevel=WARNING + + +
    • -
      - - -
      -
    • -
      -
      -
      -
      -
      + -valueAnalysis + + +
    + +
    + + + +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    -
    -
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +

    + Generated by + + BenchExec (test) + +

    `; -exports[`StatisticsTable for union-table-multiple-results.table.html Compare StatisticsTable using python-computed stats 1`] = ` +exports[`StatisticsTable for test-error.2015-03-03_1613.table.html Compare StatisticsTable using python-computed stats 1`] = `

    - Statistics + Benchmark Setup

    -
    -
    -
    + -
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    -
    +
    + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + predicateAnalysis + + valueAnalysis +
    + Options + + +
      -
      -
      - -
      -
      -
      -
      -
      - - CPAchecker [2015-03-03 16:13:02 CET; 2015-03-03 18:15:20 CET] predicateAnalysis - -
      + -noout + + +
    • -
    • -
      -
      - - CPAchecker [2015-03-03 16:13:02 CET; 2015-03-03 18:15:20 CET] valueAnalysis - -
      + -setprop log.consoleLevel=WARNING + + +
    • -
    • -
      -
      + + -predicateAnalysis + + +
    + +
    +
      -
      - - Click here to select columns - -
      + -noout + + +
    • -
    • -
      + + -setprop log.consoleLevel=WARNING + + +
    • + + -valueAnalysis + +
    • +
    + +
    + + + +
    +
    - +
    +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    - status +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for union-table.diff.html Compare StatisticsTable using js-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + predicateAnalysis + + valueAnalysis +
    + Options + + +
      +
        -
        - cputime -
        - (s) -
        -
        -
        -
        -
        - walltime -
        - (s) -
        -
        + -noout + + +
      • -
      • -
        -
        - memory -
        - (MB) -
        -
        + -setprop log.consoleLevel=WARNING + + +
      • -
      • -
        + + -predicateAnalysis + + +
      +
    +
    +
      - - -
      +
        -
        - status -
        -
        -
        -
        -
        - cputime -
        - (s) -
        -
        + -noout + + +
      • -
      • -
        -
        - walltime -
        - (s) -
        -
        + -setprop log.consoleLevel=WARNING + + +
      • -
      • -
        -
        - memory -
        - (MB) -
        -
        -
        -
        -
        -
        + -valueAnalysis + + +
      +
    +
    -
    + Click here to select columns + +
    + +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for union-table.diff.html Compare StatisticsTable using python-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + predicateAnalysis + + valueAnalysis +
    + Options + + +
      -
      -
      -
      -
      -
      -
      -
      -
      + + -noout + + +
    • -
      -
      -
      + + -setprop log.consoleLevel=WARNING + +
    • +
    • + + -predicateAnalysis + +
    • +
    + +
    +
      -
      -
      -
      +
        -
        -
        -
        -
        + + -noout + + +
      • -
        -
        -
        + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -valueAnalysis + +
      • +
      +
    +
    + + + +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for union-table.table.html Compare StatisticsTable using js-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + predicateAnalysis + + valueAnalysis +
    + Options + + +
      -
      -
      -
      -
      -
      -
      -
      -
      + + -noout + + +
    • -
      -
      -
      + + -setprop log.consoleLevel=WARNING + +
    • +
    • + + -predicateAnalysis + +
    • +
    + +
    +
      -
      -
      -
      +
        -
        -
        -
        -
        -
        -
        -
        + + -noout + + +
      • -
        - - -
        -
      • -
        + -setprop log.consoleLevel=WARNING + + +
      • + + -valueAnalysis + +
      • +
      +
    +
    + + + +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for union-table.table.html Compare StatisticsTable using python-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + predicateAnalysis + + valueAnalysis +
    + Options + + +
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      + + -noout + + +
    • -
      -
      -
      + + -setprop log.consoleLevel=WARNING + +
    • +
    • -
      -
      -
    • -
      + + -predicateAnalysis + + +
    + +
    +
      -
      -
      -
      -
      -
      + + -noout + + +
    • -
      -
      -
      + + -setprop log.consoleLevel=WARNING + +
    • +
    • + + -valueAnalysis + +
    • +
    + +
    + + + +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for union-table-duplicate-results.diff.html Compare StatisticsTable using js-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + [1.4-svn 15944M; 1.4-svn 15986M] +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + [2015-03-03 16:13:02 CET; 2015-03-03 18:15:20 CET] +
    + Run set + + + predicateAnalysis + + valueAnalysis +
    + Options + + +
      -
      +
        -
        -
        -
        -
        - - -
        -
        -
        + -noout + + +
      • -
        - - -
        -
      • -
        + -setprop log.consoleLevel=WARNING + + +
      • -
        - - -
        -
      • -
      -
      + -predicateAnalysis + + +
    + +
    +
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      + + -noout + + +
    • -
      - - -
      -
    • -
      + -setprop log.consoleLevel=WARNING + + +
    • + + -valueAnalysis + +
    • +
    + +
    + + + +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for union-table-duplicate-results.diff.html Compare StatisticsTable using python-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + [1.4-svn 15944M; 1.4-svn 15986M] +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + [2015-03-03 16:13:02 CET; 2015-03-03 18:15:20 CET] +
    + Run set + + + predicateAnalysis + + valueAnalysis +
    + Options + + +
      -
      -
      -
      -
      -
      -
      -
      -
      -
      - - -
      -
      -
      + -noout + + +
    • -
      - - -
      -
    • -
      + -setprop log.consoleLevel=WARNING + + +
    • -
      - - -
      -
    • -
      + -predicateAnalysis + + +
    + +
    +
      -
      +
        -
        -
        -
        -
        - - -
        -
        -
        + -noout + + +
      • + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -valueAnalysis + +
      • +
      +
    +
    + + + +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    -
    -
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +

    + Generated by + + BenchExec (test) + +

    `; -exports[`StatisticsTable for union-table-predicateAnalysis.table.html Compare StatisticsTable using js-computed stats 1`] = ` +exports[`StatisticsTable for union-table-duplicate-results.table.html Compare StatisticsTable using js-computed stats 1`] = `

    - Statistics + Benchmark Setup

    -
    -
    -
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + [1.4-svn 15944M; 1.4-svn 15986M] +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + [2015-03-03 16:13:02 CET; 2015-03-03 18:15:20 CET] +
    + Run set + + + predicateAnalysis + + valueAnalysis +
    -
    -
    +
    + +
      -
      -
      - -
      -
      -
      -
      -
      + + -noout + + +
    • - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
      + -setprop log.consoleLevel=WARNING + +
    • +
    • -
    • -
      -
      + + -predicateAnalysis + + +
    + +
    +
      -
      - - Click here to select columns - -
      -
      -
      - -
      -
      -
      - status -
      -
      + -noout + + +
    • -
    • -
      -
      - cputime -
      - (s) -
      -
      + -setprop log.consoleLevel=WARNING + + +
    • -
    • -
      + + -valueAnalysis + + +
    + +
    + + + +
    +
    - walltime -
    - (s) +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    +
    +
    +
    - memory -
    - (MB) +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    -
    -
    +
    -
    +
    +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for union-table-duplicate-results.table.html Compare StatisticsTable using python-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + [1.4-svn 15944M; 1.4-svn 15986M] +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + [2015-03-03 16:13:02 CET; 2015-03-03 18:15:20 CET] +
    + Run set + + + predicateAnalysis + + valueAnalysis +
    + Options + + +
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      + + -noout + + +
    • -
      -
      -
      + + -setprop log.consoleLevel=WARNING + +
    • +
    • -
      -
      -
    • -
      + + -predicateAnalysis + + +
    + +
    +
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      + + -noout + + +
    • -
      -
      -
      + + -setprop log.consoleLevel=WARNING + +
    • +
    • -
      -
      -
    • -
      + + -valueAnalysis + + +
    + +
    + + + +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for union-table-mixed.diff.html Compare StatisticsTable using js-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M + + + CPAchecker + + 1.4-svn 15986M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET + + 2015-03-03 18:15:20 CET +
    + Run set + + + predicateAnalysis + + valueAnalysis + + predicateAnalysis +
    + Options + + +
      -
      -
      -
      -
      -
      + + -noout + + +
    • -
      -
      -
      + + -setprop log.consoleLevel=WARNING + +
    • +
    • + + -predicateAnalysis + +
    • +
    + +
    +
      -
      -
      -
      +
        -
        -
        -
        -
        -
        -
        -
        + + -noout + + +
      • + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -valueAnalysis + +
      • +
      +
    +
    +
      -
      -
      -
      -
      -
      + + -noout + + +
    • -
      -
      -
      + + -setprop log.consoleLevel=WARNING + +
    • +
    • + + -predicateAnalysis + +
    • +
    + +
    + + + +
    +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for union-table-mixed.diff.html Compare StatisticsTable using python-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M + + + CPAchecker + + 1.4-svn 15986M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET + + 2015-03-03 18:15:20 CET +
    + Run set + + + predicateAnalysis + + valueAnalysis + + predicateAnalysis +
    + Options + + +
      -
      -
      -
      -
      -
      + + -noout + + +
    • -
      -
      -
      + + -setprop log.consoleLevel=WARNING + +
    • +
    • + + -predicateAnalysis + +
    • +
    + +
    +
      -
      -
      -
      +
        -
        -
        -
        -
        -
        -
        -
        + + -noout + + +
      • + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -valueAnalysis + +
      • +
      +
    +
    +
      -
      -
      -
      -
      -
      + + -noout + + +
    • -
      -
      -
      + + -setprop log.consoleLevel=WARNING + +
    • +
    • + + -predicateAnalysis + +
    • +
    + +
    + + + +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    -
    -
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +

    + Generated by + + BenchExec (test) + +

    `; -exports[`StatisticsTable for union-table-predicateAnalysis.table.html Compare StatisticsTable using python-computed stats 1`] = ` +exports[`StatisticsTable for union-table-mixed.table.html Compare StatisticsTable using js-computed stats 1`] = `

    - Statistics + Benchmark Setup

    -
    + + + + -
    -
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M + + + CPAchecker + + 1.4-svn 15986M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET + + 2015-03-03 18:15:20 CET +
    -
    -
    +
    + + predicateAnalysis + + valueAnalysis + + predicateAnalysis +
    + Options + + +
      -
      -
      - -
      -
      -
      -
      -
      + + -noout + + +
    • - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
      + -setprop log.consoleLevel=WARNING + +
    • +
    • -
    • -
      -
      + + -predicateAnalysis + + +
    + +
    +
      -
      - - Click here to select columns - -
      -
      -
      - -
      -
      -
      - status -
      -
      + -noout + + +
    • -
    • -
      -
      - cputime -
      - (s) -
      -
      + -setprop log.consoleLevel=WARNING + + +
    • -
    • -
      + + -valueAnalysis + + +
    + +
    +
      +
        -
        - walltime -
        - (s) -
        -
        -
        -
        + + -noout + + +
      • -
        - memory -
        - (MB) -
        -
        + -setprop log.consoleLevel=WARNING + +
      • +
      • -
      • - - -
        + + -predicateAnalysis + + +
      +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    +
    + +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    -
    +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    -
    +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for union-table-mixed.table.html Compare StatisticsTable using python-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    + 1.4-svn 15944M +
    + -
    -
    -
    -
    -
    + 1.4-svn 15986M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET + + 2015-03-03 18:15:20 CET +
    + Run set + + + predicateAnalysis + + valueAnalysis + + predicateAnalysis +
    + Options + + +
      -
      -
      -
      +
        -
        -
        -
        -
        -
        -
        + + -noout + + +
      • -
        -
        -
      • -
        + + -setprop log.consoleLevel=WARNING + + +
      • + + -predicateAnalysis + +
      • +
      +
    +
    +
      -
      -
      -
      -
      + + -noout + + +
    • + + -setprop log.consoleLevel=WARNING + +
    • +
    • + + -valueAnalysis + +
    • +
    + +
    +
      -
      +
        -
        -
        -
        + + -noout + + +
      • + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -predicateAnalysis + +
      • +
      +
    +
    + + + +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    -
    -
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +

    + Generated by + + BenchExec (test) + +

    `; -exports[`StatisticsTable for union-table-valueAnalysis.table.html Compare StatisticsTable using js-computed stats 1`] = ` +exports[`StatisticsTable for union-table-multiple-results.diff.html Compare StatisticsTable using js-computed stats 1`] = `

    - Statistics + Benchmark Setup

    -
    -
    -
    + -
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    -
    +
    + + + CPAchecker + + [1.4-svn 15944M; 1.4-svn 15986M] +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + [2015-03-03 16:13:02 CET; 2015-03-03 18:15:20 CET] +
    + Run set + + + predicateAnalysis + + valueAnalysis +
    + Options + + +
      -
      -
      - -
      -
      -
      -
      -
      - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
      + -noout + + +
    • -
    • -
      -
      -
      - - Click here to select columns - -
      + -setprop log.consoleLevel=WARNING + + +
    • -
    • -
      + + -predicateAnalysis + + +
    + +
    +
      - - -
      +
        -
        - status -
        -
        -
        -
        -
        - cputime -
        - (s) -
        -
        + -noout + + +
      • -
      • -
        -
        - walltime -
        - (s) -
        -
        + -setprop log.consoleLevel=WARNING + + +
      • -
      • -
        -
        - memory -
        - (MB) -
        -
        -
        -
        -
        -
        + -valueAnalysis + + +
      +
    +
    -
    + Click here to select columns + +
    + +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    -
    +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for union-table-multiple-results.diff.html Compare StatisticsTable using python-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + [1.4-svn 15944M; 1.4-svn 15986M] +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + [2015-03-03 16:13:02 CET; 2015-03-03 18:15:20 CET] +
    + Run set + + + predicateAnalysis + + valueAnalysis +
    + Options + + +
      -
      -
      -
      -
      -
      -
      -
      -
      -
      - - -
      -
      -
      + -noout + + +
    • -
      - - -
      -
    • -
      + -setprop log.consoleLevel=WARNING + + +
    • -
      - - -
      -
    • -
      -
      + -predicateAnalysis + + +
    + +
    +
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      + + -noout + + +
    • -
      -
      -
      + + -setprop log.consoleLevel=WARNING + +
    • +
    • -
      -
      -
    • -
      + + -valueAnalysis + + +
    + +
    + + + +
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for union-table-multiple-results.table.html Compare StatisticsTable using js-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + [1.4-svn 15944M; 1.4-svn 15986M] +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + [2015-03-03 16:13:02 CET; 2015-03-03 18:15:20 CET] +
    + Run set + + + predicateAnalysis + + valueAnalysis +
    + Options + + +
      -
      -
      -
      -
      -
      -
      -
      -
      -
      - - -
      -
      -
      + -noout + + +
    • -
      - - -
      -
    • -
      + -setprop log.consoleLevel=WARNING + + +
    • -
      - - -
      -
    • -
      -
      + -predicateAnalysis + + +
    + +
    +
      -
      -
      -
      -
      -
      -
      -
      -
      + + -noout + + +
    • -
      - - -
      -
    • -
      + -setprop log.consoleLevel=WARNING + + +
    • + + -valueAnalysis + +
    • +
    + +
    + + + +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    -
    -
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +

    + Generated by + + BenchExec (test) + +

    `; -exports[`StatisticsTable for union-table-valueAnalysis.table.html Compare StatisticsTable using python-computed stats 1`] = ` +exports[`StatisticsTable for union-table-multiple-results.table.html Compare StatisticsTable using python-computed stats 1`] = `

    - Statistics + Benchmark Setup

    -
    + + + + -
    -
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + [1.4-svn 15944M; 1.4-svn 15986M] +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    -
    -
    +
    + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + [2015-03-03 16:13:02 CET; 2015-03-03 18:15:20 CET] +
    + Run set + + + predicateAnalysis + + valueAnalysis +
    + Options + + +
      -
      -
      - -
      -
      -
      -
      -
      - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
      + -noout + + +
    • -
    • -
      -
      -
      - - Click here to select columns - -
      + -setprop log.consoleLevel=WARNING + + +
    • -
    • -
      + + -predicateAnalysis + + +
    + +
    +
      - - -
      +
        -
        - status -
        -
        -
        -
        -
        - cputime -
        - (s) -
        -
        + -noout + + +
      • -
      • -
        -
        - walltime -
        - (s) -
        -
        + -setprop log.consoleLevel=WARNING + + +
      • -
      • -
        -
        - memory -
        - (MB) -
        -
        -
        -
        -
        -
        + -valueAnalysis + + +
      +
    +
    -
    + Click here to select columns + +
    + +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    -
    +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    + className="table sticky" + > +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for union-table-predicateAnalysis.table.html Compare StatisticsTable using js-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + predicateAnalysis +
    + Options + + +
      -
      -
      -
      -
      -
      -
      -
      -
      -
      - - -
      -
      -
      + -noout + + +
    • -
      - - -
      -
    • -
      + -setprop log.consoleLevel=WARNING + + +
    • + + -predicateAnalysis + +
    • +
    + +
    + + + +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for union-table-predicateAnalysis.table.html Compare StatisticsTable using python-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + predicateAnalysis +
    + Options + + +
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      + + -noout + + +
    • -
      -
      -
      + + -setprop log.consoleLevel=WARNING + +
    • +
    • -
      -
      -
    • -
      + + -predicateAnalysis + + +
    + +
    + + + +
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for union-table-valueAnalysis.table.html Compare StatisticsTable using js-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + valueAnalysis +
    + Options + + +
      -
      -
      -
      -
      -
      -
      -
      -
      -
      - - -
      -
      -
      + -noout + + +
    • -
      - - -
      -
    • -
      + -setprop log.consoleLevel=WARNING + + +
    • + + -valueAnalysis + +
    • +
    + +
    + + + +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`StatisticsTable for union-table-valueAnalysis.table.html Compare StatisticsTable using python-computed stats 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + valueAnalysis +
    + Options + + +
      -
      -
      -
      -
      -
      -
      -
      -
      -
      - - -
      -
      -
      + -noout + + +
    • -
      - - -
      -
    • -
      + -setprop log.consoleLevel=WARNING + + +
    • + + -valueAnalysis + +
    • +
    + +
    + + + +
    +
    - - +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    -
    -
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +

    + Generated by + + BenchExec (test) + +

    `; diff --git a/benchexec/tablegenerator/react-table/src/tests/__snapshots__/Summary.test.js.snap b/benchexec/tablegenerator/react-table/src/tests/__snapshots__/Summary.test.js.snap index ddb190249..136b462e6 100644 --- a/benchexec/tablegenerator/react-table/src/tests/__snapshots__/Summary.test.js.snap +++ b/benchexec/tablegenerator/react-table/src/tests/__snapshots__/Summary.test.js.snap @@ -432,6 +432,14 @@ exports[`Render Summary for benchmark-example-true.2019-11-06_0932.results.no op > @@ -500,9 +508,13 @@ exports[`Render Summary for benchmark-example-true.2019-11-06_0932.results.no op role="columnheader" style={ Object { + "borderLeft": "none", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "68 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "68px", } @@ -510,6 +522,17 @@ exports[`Render Summary for benchmark-example-true.2019-11-06_0932.results.no op >
    status @@ -531,9 +554,13 @@ exports[`Render Summary for benchmark-example-true.2019-11-06_0932.results.no op role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "76 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "76px", } @@ -541,6 +568,17 @@ exports[`Render Summary for benchmark-example-true.2019-11-06_0932.results.no op >
    cputime @@ -564,9 +602,13 @@ exports[`Render Summary for benchmark-example-true.2019-11-06_0932.results.no op role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "84 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "84px", } @@ -574,6 +616,17 @@ exports[`Render Summary for benchmark-example-true.2019-11-06_0932.results.no op >
    walltime @@ -597,9 +650,13 @@ exports[`Render Summary for benchmark-example-true.2019-11-06_0932.results.no op role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "68 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "68px", } @@ -607,6 +664,17 @@ exports[`Render Summary for benchmark-example-true.2019-11-06_0932.results.no op >
    memory @@ -630,9 +698,13 @@ exports[`Render Summary for benchmark-example-true.2019-11-06_0932.results.no op role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "none", "boxSizing": "border-box", "flex": "92 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "92px", } @@ -640,6 +712,17 @@ exports[`Render Summary for benchmark-example-true.2019-11-06_0932.results.no op >
    cpuenergy @@ -679,6 +762,7 @@ exports[`Render Summary for benchmark-example-true.2019-11-06_0932.results.no op role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -696,6 +780,7 @@ exports[`Render Summary for benchmark-example-true.2019-11-06_0932.results.no op role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -714,6 +799,7 @@ exports[`Render Summary for benchmark-example-true.2019-11-06_0932.results.no op role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -732,6 +818,7 @@ exports[`Render Summary for benchmark-example-true.2019-11-06_0932.results.no op role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -750,6 +837,7 @@ exports[`Render Summary for benchmark-example-true.2019-11-06_0932.results.no op role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "92 0 auto", "minWidth": "30px", @@ -780,6 +868,7 @@ exports[`Render Summary for benchmark-example-true.2019-11-06_0932.results.no op role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -798,6 +887,7 @@ exports[`Render Summary for benchmark-example-true.2019-11-06_0932.results.no op role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -815,6 +905,7 @@ exports[`Render Summary for benchmark-example-true.2019-11-06_0932.results.no op role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -832,6 +923,7 @@ exports[`Render Summary for benchmark-example-true.2019-11-06_0932.results.no op role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -850,6 +942,7 @@ exports[`Render Summary for benchmark-example-true.2019-11-06_0932.results.no op role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "92 0 auto", "minWidth": "30px", @@ -879,10 +972,10 @@ exports[`Render Summary for benchmark-example-true.2019-11-06_0932.results.no op style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -1743,6 +1836,14 @@ exports[`Render Summary for big-table.diff.html 1`] = ` > @@ -1811,9 +1912,13 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "none", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "68 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "68px", } @@ -1821,6 +1926,17 @@ exports[`Render Summary for big-table.diff.html 1`] = ` >
    status @@ -1842,9 +1958,13 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "76 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "76px", } @@ -1852,6 +1972,17 @@ exports[`Render Summary for big-table.diff.html 1`] = ` >
    cputime @@ -1875,9 +2006,13 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "84 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "84px", } @@ -1885,6 +2020,17 @@ exports[`Render Summary for big-table.diff.html 1`] = ` >
    walltime @@ -1908,9 +2054,13 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "68 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "68px", } @@ -1918,6 +2068,17 @@ exports[`Render Summary for big-table.diff.html 1`] = ` >
    memory @@ -1941,9 +2102,13 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "108 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "108px", } @@ -1951,6 +2116,17 @@ exports[`Render Summary for big-table.diff.html 1`] = ` >
    energy-core @@ -1972,9 +2148,13 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "100 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "100px", } @@ -1982,6 +2162,17 @@ exports[`Render Summary for big-table.diff.html 1`] = ` >
    energy-cpu @@ -2003,9 +2194,13 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "140 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "140px", } @@ -2013,6 +2208,17 @@ exports[`Render Summary for big-table.diff.html 1`] = ` >
    energy-external @@ -2034,9 +2240,13 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "none", "boxSizing": "border-box", "flex": "124 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "124px", } @@ -2044,6 +2254,17 @@ exports[`Render Summary for big-table.diff.html 1`] = ` >
    energy-uncore @@ -2081,6 +2302,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -2098,6 +2320,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -2116,6 +2339,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -2134,6 +2358,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -2152,6 +2377,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "108 0 auto", "minWidth": "30px", @@ -2170,6 +2396,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "100 0 auto", "minWidth": "30px", @@ -2188,6 +2415,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "140 0 auto", "minWidth": "30px", @@ -2206,6 +2434,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "124 0 auto", "minWidth": "30px", @@ -2236,6 +2465,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -2253,6 +2483,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -2271,6 +2502,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -2289,6 +2521,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -2307,6 +2540,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "108 0 auto", "minWidth": "30px", @@ -2325,6 +2559,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "100 0 auto", "minWidth": "30px", @@ -2343,6 +2578,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "140 0 auto", "minWidth": "30px", @@ -2361,6 +2597,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "124 0 auto", "minWidth": "30px", @@ -2391,6 +2628,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -2408,6 +2646,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -2426,6 +2665,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -2444,6 +2684,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -2462,6 +2703,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "108 0 auto", "minWidth": "30px", @@ -2480,6 +2722,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "100 0 auto", "minWidth": "30px", @@ -2498,6 +2741,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "140 0 auto", "minWidth": "30px", @@ -2516,6 +2760,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "124 0 auto", "minWidth": "30px", @@ -2546,6 +2791,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -2563,6 +2809,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -2581,6 +2828,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -2599,6 +2847,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -2617,6 +2866,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "108 0 auto", "minWidth": "30px", @@ -2635,6 +2885,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "100 0 auto", "minWidth": "30px", @@ -2653,6 +2904,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "140 0 auto", "minWidth": "30px", @@ -2671,6 +2923,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "124 0 auto", "minWidth": "30px", @@ -2701,6 +2954,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -2718,6 +2972,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -2736,6 +2991,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -2754,6 +3010,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -2772,6 +3029,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "108 0 auto", "minWidth": "30px", @@ -2790,6 +3048,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "100 0 auto", "minWidth": "30px", @@ -2808,6 +3067,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "140 0 auto", "minWidth": "30px", @@ -2826,6 +3086,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "124 0 auto", "minWidth": "30px", @@ -2856,6 +3117,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -2873,6 +3135,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -2891,6 +3154,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -2909,6 +3173,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -2927,6 +3192,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "108 0 auto", "minWidth": "30px", @@ -2945,6 +3211,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "100 0 auto", "minWidth": "30px", @@ -2963,6 +3230,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "140 0 auto", "minWidth": "30px", @@ -2981,6 +3249,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "124 0 auto", "minWidth": "30px", @@ -3011,6 +3280,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -3028,6 +3298,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -3046,6 +3317,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -3064,6 +3336,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -3082,6 +3355,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "108 0 auto", "minWidth": "30px", @@ -3100,6 +3374,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "100 0 auto", "minWidth": "30px", @@ -3118,6 +3393,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "140 0 auto", "minWidth": "30px", @@ -3136,6 +3412,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "124 0 auto", "minWidth": "30px", @@ -3209,9 +3486,13 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "none", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "68 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "68px", } @@ -3219,6 +3500,17 @@ exports[`Render Summary for big-table.diff.html 1`] = ` >
    status @@ -3240,9 +3532,13 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "76 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "76px", } @@ -3250,6 +3546,17 @@ exports[`Render Summary for big-table.diff.html 1`] = ` >
    cputime @@ -3273,9 +3580,13 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "84 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "84px", } @@ -3283,6 +3594,17 @@ exports[`Render Summary for big-table.diff.html 1`] = ` >
    walltime @@ -3306,9 +3628,13 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "none", "boxSizing": "border-box", "flex": "68 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "68px", } @@ -3316,6 +3642,17 @@ exports[`Render Summary for big-table.diff.html 1`] = ` >
    memory @@ -3355,6 +3692,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -3372,6 +3710,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -3390,6 +3729,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -3408,6 +3748,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -3438,6 +3779,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -3455,6 +3797,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -3473,6 +3816,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -3491,6 +3835,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -3521,6 +3866,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -3538,6 +3884,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -3556,6 +3903,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -3574,6 +3922,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -3604,6 +3953,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -3621,6 +3971,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -3639,6 +3990,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -3657,6 +4009,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -3687,6 +4040,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -3704,6 +4058,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -3722,6 +4077,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -3740,6 +4096,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -3770,6 +4127,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -3787,6 +4145,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -3805,6 +4164,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -3823,6 +4183,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -3853,6 +4214,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -3870,6 +4232,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -3888,6 +4251,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -3906,6 +4270,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -3979,9 +4344,13 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "none", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "68 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "68px", } @@ -3989,6 +4358,17 @@ exports[`Render Summary for big-table.diff.html 1`] = ` >
    status @@ -4010,9 +4390,13 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "76 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "76px", } @@ -4020,6 +4404,17 @@ exports[`Render Summary for big-table.diff.html 1`] = ` >
    cputime @@ -4043,9 +4438,13 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "84 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "84px", } @@ -4053,6 +4452,17 @@ exports[`Render Summary for big-table.diff.html 1`] = ` >
    walltime @@ -4076,9 +4486,13 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "none", "boxSizing": "border-box", "flex": "68 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "68px", } @@ -4086,6 +4500,17 @@ exports[`Render Summary for big-table.diff.html 1`] = ` >
    memory @@ -4125,6 +4550,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -4142,6 +4568,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -4160,6 +4587,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -4178,6 +4606,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -4208,6 +4637,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -4225,6 +4655,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -4243,6 +4674,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -4261,6 +4693,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -4291,6 +4724,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -4308,6 +4742,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -4326,6 +4761,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -4344,6 +4780,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -4374,6 +4811,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -4391,6 +4829,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -4409,6 +4848,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -4427,6 +4867,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -4457,6 +4898,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -4474,6 +4916,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -4492,6 +4935,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -4510,6 +4954,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -4540,6 +4985,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -4557,6 +5003,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -4575,6 +5022,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -4593,6 +5041,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -4623,6 +5072,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -4640,6 +5090,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -4658,6 +5109,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -4676,6 +5128,7 @@ exports[`Render Summary for big-table.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -4706,10 +5159,10 @@ exports[`Render Summary for big-table.diff.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -4736,10 +5189,10 @@ exports[`Render Summary for big-table.diff.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -4766,10 +5219,10 @@ exports[`Render Summary for big-table.diff.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -4796,10 +5249,10 @@ exports[`Render Summary for big-table.diff.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -4826,10 +5279,10 @@ exports[`Render Summary for big-table.diff.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -4856,10 +5309,10 @@ exports[`Render Summary for big-table.diff.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -4886,10 +5339,10 @@ exports[`Render Summary for big-table.diff.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -5335,6 +5788,14 @@ exports[`Render Summary for cbmc.2015-12-11_1211.results.Simple.html 1`] = ` > @@ -5403,9 +5864,13 @@ exports[`Render Summary for cbmc.2015-12-11_1211.results.Simple.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "none", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "68 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "68px", } @@ -5413,6 +5878,17 @@ exports[`Render Summary for cbmc.2015-12-11_1211.results.Simple.html 1`] = ` >
    status @@ -5434,9 +5910,13 @@ exports[`Render Summary for cbmc.2015-12-11_1211.results.Simple.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "76 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "76px", } @@ -5444,6 +5924,17 @@ exports[`Render Summary for cbmc.2015-12-11_1211.results.Simple.html 1`] = ` >
    cputime @@ -5467,9 +5958,13 @@ exports[`Render Summary for cbmc.2015-12-11_1211.results.Simple.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "84 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "84px", } @@ -5477,6 +5972,17 @@ exports[`Render Summary for cbmc.2015-12-11_1211.results.Simple.html 1`] = ` >
    walltime @@ -5500,9 +6006,13 @@ exports[`Render Summary for cbmc.2015-12-11_1211.results.Simple.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "none", "boxSizing": "border-box", "flex": "68 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "68px", } @@ -5510,6 +6020,17 @@ exports[`Render Summary for cbmc.2015-12-11_1211.results.Simple.html 1`] = ` >
    memory @@ -5549,6 +6070,7 @@ exports[`Render Summary for cbmc.2015-12-11_1211.results.Simple.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -5566,6 +6088,7 @@ exports[`Render Summary for cbmc.2015-12-11_1211.results.Simple.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -5584,6 +6107,7 @@ exports[`Render Summary for cbmc.2015-12-11_1211.results.Simple.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -5602,6 +6126,7 @@ exports[`Render Summary for cbmc.2015-12-11_1211.results.Simple.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -5632,6 +6157,7 @@ exports[`Render Summary for cbmc.2015-12-11_1211.results.Simple.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -5650,6 +6176,7 @@ exports[`Render Summary for cbmc.2015-12-11_1211.results.Simple.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -5667,6 +6194,7 @@ exports[`Render Summary for cbmc.2015-12-11_1211.results.Simple.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -5684,6 +6212,7 @@ exports[`Render Summary for cbmc.2015-12-11_1211.results.Simple.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -5714,6 +6243,7 @@ exports[`Render Summary for cbmc.2015-12-11_1211.results.Simple.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -5731,6 +6261,7 @@ exports[`Render Summary for cbmc.2015-12-11_1211.results.Simple.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -5749,6 +6280,7 @@ exports[`Render Summary for cbmc.2015-12-11_1211.results.Simple.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -5767,6 +6299,7 @@ exports[`Render Summary for cbmc.2015-12-11_1211.results.Simple.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -5797,6 +6330,7 @@ exports[`Render Summary for cbmc.2015-12-11_1211.results.Simple.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -5814,6 +6348,7 @@ exports[`Render Summary for cbmc.2015-12-11_1211.results.Simple.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -5832,6 +6367,7 @@ exports[`Render Summary for cbmc.2015-12-11_1211.results.Simple.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -5850,6 +6386,7 @@ exports[`Render Summary for cbmc.2015-12-11_1211.results.Simple.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -5880,6 +6417,7 @@ exports[`Render Summary for cbmc.2015-12-11_1211.results.Simple.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -5897,6 +6435,7 @@ exports[`Render Summary for cbmc.2015-12-11_1211.results.Simple.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -5915,6 +6454,7 @@ exports[`Render Summary for cbmc.2015-12-11_1211.results.Simple.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -5933,6 +6473,7 @@ exports[`Render Summary for cbmc.2015-12-11_1211.results.Simple.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -5963,6 +6504,7 @@ exports[`Render Summary for cbmc.2015-12-11_1211.results.Simple.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -5980,6 +6522,7 @@ exports[`Render Summary for cbmc.2015-12-11_1211.results.Simple.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -5998,6 +6541,7 @@ exports[`Render Summary for cbmc.2015-12-11_1211.results.Simple.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -6016,6 +6560,7 @@ exports[`Render Summary for cbmc.2015-12-11_1211.results.Simple.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -6046,6 +6591,7 @@ exports[`Render Summary for cbmc.2015-12-11_1211.results.Simple.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -6063,6 +6609,7 @@ exports[`Render Summary for cbmc.2015-12-11_1211.results.Simple.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -6081,6 +6628,7 @@ exports[`Render Summary for cbmc.2015-12-11_1211.results.Simple.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -6099,6 +6647,7 @@ exports[`Render Summary for cbmc.2015-12-11_1211.results.Simple.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -6129,6 +6678,7 @@ exports[`Render Summary for cbmc.2015-12-11_1211.results.Simple.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -6146,6 +6696,7 @@ exports[`Render Summary for cbmc.2015-12-11_1211.results.Simple.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -6164,6 +6715,7 @@ exports[`Render Summary for cbmc.2015-12-11_1211.results.Simple.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -6182,6 +6734,7 @@ exports[`Render Summary for cbmc.2015-12-11_1211.results.Simple.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -6212,10 +6765,10 @@ exports[`Render Summary for cbmc.2015-12-11_1211.results.Simple.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -6272,10 +6825,10 @@ exports[`Render Summary for cbmc.2015-12-11_1211.results.Simple.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -6302,10 +6855,10 @@ exports[`Render Summary for cbmc.2015-12-11_1211.results.Simple.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -6332,10 +6885,10 @@ exports[`Render Summary for cbmc.2015-12-11_1211.results.Simple.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -6362,10 +6915,10 @@ exports[`Render Summary for cbmc.2015-12-11_1211.results.Simple.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -6392,10 +6945,10 @@ exports[`Render Summary for cbmc.2015-12-11_1211.results.Simple.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -6422,10 +6975,10 @@ exports[`Render Summary for cbmc.2015-12-11_1211.results.Simple.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -6465,23 +7018,84 @@ exports[`Render Summary for multi-table.diff.html 1`] = `
    +

    + Benchmark Setup +

    -

    - Benchmark Setup -

    - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + +
    + + + + - - + - - + - - + - - + - - + - - + - - + - - + draggable={false} + role="separator" + style={ + Object { + "background": "rgba(0, 0, 0, 0.1)", + "cursor": "col-resize", + "margin": "0px", + "padding": "0px", + } + } + /> - - -
    Tool +
    +
    Limits + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1
    +
    Host + tortuga
    +
    OS + Linux 3.13.0-45-generic x86_64
    +
    System + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB
    +
    Date of execution + 2015-03-03 16:13:02 CET 2015-03-03 18:15:20 CET
    +
    Run set + predicateAnalysis valueAnalysis predicateAnalysis valueAnalysis
    +
    Options -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -predicateAnalysis - -
    • -
    -
    -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -valueAnalysis - -
    • -
    -
    -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -predicateAnalysis - -
    • -
    -
    -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -valueAnalysis - -
    • -
    -
    - -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    + -noout + + +
  • - - CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis - -
    -
    -
    -
    + -setprop log.consoleLevel=WARNING + +
  • +
  • - - CPAchecker 2015-03-03 18:15:20 CET valueAnalysis - -
    -
    -
  • -
    + -predicateAnalysis + + + + + +
    +
      +
        -
        - - Click here to select columns - -
        -
        -
        - -
        -
        -
        - status -
        -
        -
        -
        -
        - cputime -
        - (s) -
        -
        -
        -
        -
        - walltime -
        - (s) -
        -
        -
        -
        -
        - memory -
        - (MB) -
        -
        -
        -
        - -
        -
        -
        - status -
        -
        -
        -
        -
        - cputime -
        - (s) -
        -
        -
        -
        -
        - walltime -
        - (s) -
        -
        -
        -
        -
        - memory -
        - (MB) -
        -
        -
        -
        + -noout + + +
      • - -
      • -
        + -setprop log.consoleLevel=WARNING + + +
      • -
        - status -
        -
        -
        -
        + -valueAnalysis + +
      • +
      +
    +
    +
      +
        -
        - cputime -
        - (s) -
        -
        -
        -
        +
      • -
        - walltime -
        - (s) -
        -
        -
        -
        + -noout + +
      • +
      • -
        - memory -
        - (MB) -
        -
        -
        -
        + -setprop log.consoleLevel=WARNING + +
      • +
      • - -
      • -
        + -predicateAnalysis + + +
      +
    +
    +
      +
        -
        - status -
        -
        -
        -
        +
      • -
        - cputime -
        - (s) -
        -
        -
        -
        + -noout + +
      • +
      • -
        - walltime -
        - (s) -
        -
        -
        -
        + -setprop log.consoleLevel=WARNING + +
      • +
      • -
        - memory -
        - (MB) -
        -
        -
        -
      • - + + -valueAnalysis + + +
      +
    +
    + + +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -

    - Generated by - - BenchExec (test) - -

    -
    -`; - -exports[`Render Summary for multi-table.table.html 1`] = ` -
    -
    -

    - Benchmark Setup -

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - Tool - - - CPAchecker - - 1.4-svn 15944M - - - CPAchecker - - 1.4-svn 15986M -
    - Limits - - timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 -
    - Host - - tortuga -
    - OS - - Linux 3.13.0-45-generic x86_64 -
    - System - - CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB -
    - Date of execution - - 2015-03-03 16:13:02 CET - - 2015-03-03 18:15:20 CET -
    - Run set - - predicateAnalysis - - valueAnalysis - - predicateAnalysis - - valueAnalysis -
    - Options - -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -predicateAnalysis - -
    • -
    -
    -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -valueAnalysis - -
    • -
    -
    -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -predicateAnalysis - -
    • -
    -
    -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -valueAnalysis - -
    • -
    -
    -
    -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -

    - Generated by - - BenchExec (test) - -

    -
    -`; - -exports[`Render Summary for multi-table-only-columns.diff.html 1`] = ` -
    -
    -

    - Benchmark Setup -

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - Tool - - - CPAchecker - - 1.4-svn 15944M - - - CPAchecker - - 1.4-svn 15986M -
    - Limits - - timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 -
    - Host - - tortuga -
    - OS - - Linux 3.13.0-45-generic x86_64 -
    - System - - CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB -
    - Date of execution - - 2015-03-03 16:13:02 CET - - 2015-03-03 18:15:20 CET -
    - Run set - - predicateAnalysis - - valueAnalysis - - predicateAnalysis - - valueAnalysis -
    - Options - -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -predicateAnalysis - -
    • -
    -
    -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -valueAnalysis - -
    • -
    -
    -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -predicateAnalysis - -
    • -
    -
    -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -valueAnalysis - -
    • -
    -
    -
    -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - SMT time -
    - (s) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - variable count -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - SMT time -
    - (s) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - variable count -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -

    - Generated by - - BenchExec (test) - -

    -
    -`; - -exports[`Render Summary for multi-table-only-columns.table.html 1`] = ` -
    -
    -

    - Benchmark Setup -

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - Tool - - - CPAchecker - - 1.4-svn 15944M - - - CPAchecker - - 1.4-svn 15986M -
    - Limits - - timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 -
    - Host - - tortuga -
    - OS - - Linux 3.13.0-45-generic x86_64 -
    - System - - CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB -
    - Date of execution - - 2015-03-03 16:13:02 CET - - 2015-03-03 18:15:20 CET -
    - Run set - - predicateAnalysis - - valueAnalysis - - predicateAnalysis - - valueAnalysis -
    - Options - -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -predicateAnalysis - -
    • -
    -
    -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -valueAnalysis - -
    • -
    -
    -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -predicateAnalysis - -
    • -
    -
    -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -valueAnalysis - -
    • -
    -
    -
    -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - SMT time -
    - (s) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - variable count -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - SMT time -
    - (s) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - variable count -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -

    - Generated by - - BenchExec (test) - -

    -
    -`; - -exports[`Render Summary for multi-table-with-columns.diff.html 1`] = ` -
    -
    -

    - Benchmark Setup -

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - Tool - - - CPAchecker - - 1.4-svn 15944M - - - CPAchecker - - 1.4-svn 15986M -
    - Limits - - timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 -
    - Host - - tortuga -
    - OS - - Linux 3.13.0-45-generic x86_64 -
    - System - - CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB -
    - Date of execution - - 2015-03-03 16:13:02 CET - - 2015-03-03 18:15:20 CET -
    - Run set - - predicateAnalysis - - valueAnalysis - - predicateAnalysis - - valueAnalysis -
    - Options - -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -predicateAnalysis - -
    • -
    -
    -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -valueAnalysis - -
    • -
    -
    -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -predicateAnalysis - -
    • -
    -
    -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -valueAnalysis - -
    • -
    -
    -
    -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - SMT time -
    - (s) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - variable count -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - analysis -
    - (s) -
    -
    -
    -
    -
    - SMT time -
    - (s) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - analysis -
    - (s) -
    -
    -
    -
    -
    - variable count -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -

    - Generated by - - BenchExec (test) - -

    -
    -`; - -exports[`Render Summary for multi-table-with-columns.table.html 1`] = ` -
    -
    -

    - Benchmark Setup -

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - Tool - - - CPAchecker - - 1.4-svn 15944M - - - CPAchecker - - 1.4-svn 15986M -
    - Limits - - timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 -
    - Host - - tortuga -
    - OS - - Linux 3.13.0-45-generic x86_64 -
    - System - - CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB -
    - Date of execution - - 2015-03-03 16:13:02 CET - - 2015-03-03 18:15:20 CET -
    - Run set - - predicateAnalysis - - valueAnalysis - - predicateAnalysis - - valueAnalysis -
    - Options - -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -predicateAnalysis - -
    • -
    -
    -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -valueAnalysis - -
    • -
    -
    -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -predicateAnalysis - -
    • -
    -
    -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -valueAnalysis - -
    • -
    -
    -
    -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - SMT time -
    - (s) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - variable count -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - analysis -
    - (s) -
    -
    -
    -
    -
    - SMT time -
    - (s) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - analysis -
    - (s) -
    -
    -
    -
    -
    - variable count -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -

    - Generated by - - BenchExec (test) - -

    -
    -`; - -exports[`Render Summary for multi-table-with-diff-over-column.diff.html 1`] = ` -
    -
    -

    - Benchmark Setup -

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - Tool - - - CPAchecker - - 1.4-svn 15944M - - - CPAchecker - - 1.4-svn 15986M -
    - Limits - - timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 -
    - Host - - tortuga -
    - OS - - Linux 3.13.0-45-generic x86_64 -
    - System - - CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB -
    - Date of execution - - 2015-03-03 16:13:02 CET - - 2015-03-03 18:15:20 CET -
    - Run set - - predicateAnalysis - - valueAnalysis - - predicateAnalysis - - valueAnalysis -
    - Options - -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -predicateAnalysis - -
    • -
    -
    -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -valueAnalysis - -
    • -
    -
    -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -predicateAnalysis - -
    • -
    -
    -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -valueAnalysis - -
    • -
    -
    -
    -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - SMT time -
    - (s) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - variable count -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - SMT time -
    - (s) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - variable count -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -

    - Generated by - - BenchExec (test) - -

    -
    -`; - -exports[`Render Summary for multi-table-with-diff-over-column.table.html 1`] = ` -
    -
    -

    - Benchmark Setup -

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - Tool - - - CPAchecker - - 1.4-svn 15944M - - - CPAchecker - - 1.4-svn 15986M -
    - Limits - - timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 -
    - Host - - tortuga -
    - OS - - Linux 3.13.0-45-generic x86_64 -
    - System - - CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB -
    - Date of execution - - 2015-03-03 16:13:02 CET - - 2015-03-03 18:15:20 CET -
    - Run set - - predicateAnalysis - - valueAnalysis - - predicateAnalysis - - valueAnalysis -
    - Options - -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -predicateAnalysis - -
    • -
    -
    -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -valueAnalysis - -
    • -
    -
    -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -predicateAnalysis - -
    • -
    -
    -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -valueAnalysis - -
    • -
    -
    -
    -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - SMT time -
    - (s) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - variable count -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - SMT time -
    - (s) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - setup -
    - (s) -
    -
    -
    -
    -
    - variable count -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -

    - Generated by - - BenchExec (test) - -

    -
    -`; - -exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` -
    -

    - Benchmark Setup -

    -
    -
    - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -46462,7 +16359,7 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` } /> @@ -46505,7 +16402,7 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` } /> @@ -46548,7 +16445,7 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` } /> @@ -46591,7 +16488,7 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` } /> @@ -46634,7 +16531,7 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` } /> + @@ -46677,7 +16587,7 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` } /> + + + @@ -46720,7 +16669,7 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` } /> + + + - - - - + + - - + + + + + + + + + + + + + - - - - - - - - - @@ -51717,7 +25557,7 @@ exports[`Render Summary for predicateAnalysis-reverse.table.html 1`] = ` } /> @@ -51945,7 +25785,7 @@ exports[`Render Summary for predicateAnalysis-reverse.table.html 1`] = ` } /> + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - Tool - - - - CPAchecker - - 1.4-svn 15944M - - - CPAchecker - - 1.4-svn 15986M - - - CPAchecker - - 1.4-svn 15944M - - - CPAchecker - - 1.4-svn 15986M -
    - Limits - - - timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 -
    - Host - - - tortuga -
    - OS - - - Linux 3.13.0-45-generic x86_64 -
    - System - - - CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB -
    - Date of execution - - - 2015-03-03 16:13:02 CET - - 2015-03-03 18:15:20 CET - - 2015-03-03 16:13:02 CET - - 2015-03-03 18:15:20 CET -
    - Run set - - - predicateAnalysis - - predicateAnalysis - - valueAnalysis - - valueAnalysis -
    - Options - - -
      -
        -
      • - - -noout - -
      • -
      • - - -setprop log.consoleLevel=WARNING - -
      • -
      • - - -predicateAnalysis - -
      • -
      -
    -
    -
      -
        -
      • - - -noout - -
      • -
      • - - -setprop log.consoleLevel=WARNING - -
      • -
      • - - -predicateAnalysis - -
      • -
      -
    -
    -
      -
        -
      • - - -noout - -
      • -
      • - - -setprop log.consoleLevel=WARNING - -
      • -
      • - - -valueAnalysis - -
      • -
      -
    -
    -
      -
        -
      • - - -noout - -
      • -
      • - - -setprop log.consoleLevel=WARNING - -
      • -
      • - - -valueAnalysis - -
      • -
      -
    -
    - - - -
    -
    -
    -
    status @@ -38636,9 +7866,13 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "76 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "76px", } @@ -38646,6 +7880,17 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` >
    cputime @@ -38669,9 +7914,13 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "84 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "84px", } @@ -38679,6 +7928,17 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` >
    walltime @@ -38702,9 +7962,13 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "none", "boxSizing": "border-box", "flex": "68 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "68px", } @@ -38712,6 +7976,17 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` >
    memory @@ -38751,6 +8026,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -38768,6 +8044,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -38786,6 +8063,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -38804,6 +8082,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -38834,6 +8113,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -38851,6 +8131,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -38869,6 +8150,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -38887,6 +8169,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -38917,6 +8200,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -38934,6 +8218,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -38952,6 +8237,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -38970,6 +8256,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -39000,6 +8287,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -39017,6 +8305,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -39035,6 +8324,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -39053,6 +8343,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -39083,6 +8374,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -39100,6 +8392,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -39118,6 +8411,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -39136,6 +8430,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -39166,6 +8461,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -39183,6 +8479,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -39201,6 +8498,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -39219,6 +8517,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -39249,6 +8548,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -39266,6 +8566,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -39284,6 +8585,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -39302,6 +8604,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -39324,7 +8627,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = `
    status @@ -39406,9 +8724,13 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "76 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "76px", } @@ -39416,6 +8738,17 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` >
    cputime @@ -39439,9 +8772,13 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "84 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "84px", } @@ -39449,6 +8786,17 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` >
    walltime @@ -39472,9 +8820,13 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "none", "boxSizing": "border-box", "flex": "68 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "68px", } @@ -39482,6 +8834,17 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` >
    memory @@ -39521,6 +8884,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -39530,7 +8894,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` >
    @@ -39604,6 +8971,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -39613,7 +8981,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` >
    @@ -39687,6 +9058,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -39696,7 +9068,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` >
    + > + - +
    + > + - +
    + > + - +
    - - -
    + dangerouslySetInnerHTML={"2.12"} + title="avg: 2.12, max: 2.12, median: 2.12, min: 2.12, stdev: 0.000" + />
    - - -
    + dangerouslySetInnerHTML={"2.13"} + title="avg: 2.13, max: 2.13, median: 2.13, min: 2.13, stdev: 0.000" + />
    - - -
    + dangerouslySetInnerHTML={"134"} + title="avg: 134, max: 134, median: 134, min: 134, stdev: 0.000" + />
    + > + - +
    + > + - +
    + > + - +
    + > + - +
    + > + - +
    + > + - +
    status @@ -40176,9 +9582,13 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "76 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "76px", } @@ -40186,6 +9596,17 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` >
    cputime @@ -40209,9 +9630,13 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "84 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "84px", } @@ -40219,6 +9644,17 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` >
    walltime @@ -40242,9 +9678,13 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "none", "boxSizing": "border-box", "flex": "68 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "68px", } @@ -40252,6 +9692,17 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` >
    memory @@ -40291,6 +9742,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -40300,7 +9752,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` >
    @@ -40374,6 +9829,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -40383,7 +9839,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` >
    @@ -40457,6 +9916,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -40466,7 +9926,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` >
    - - -
    + dangerouslySetInnerHTML={"3.80"} + title="avg: 1.90, max: 1.95, median: 1.90, min: 1.85, stdev: 0.0493" + />
    - - -
    + dangerouslySetInnerHTML={"3.82"} + title="avg: 1.91, max: 1.96, median: 1.91, min: 1.86, stdev: 0.0493" + />
    - - -
    + dangerouslySetInnerHTML={"258"} + title="avg: 129, max: 130, median: 129, min: 129, stdev: 0.635" + />
    + > + - +
    + > + - +
    + > + - +
    - - -
    + dangerouslySetInnerHTML={"1.86"} + title="avg: 1.86, max: 1.86, median: 1.86, min: 1.86, stdev: 0.000" + />
    - - -
    + dangerouslySetInnerHTML={"1.87"} + title="avg: 1.87, max: 1.87, median: 1.87, min: 1.87, stdev: 0.000" + />
    - - -
    + dangerouslySetInnerHTML={"131"} + title="avg: 131, max: 131, median: 131, min: 131, stdev: 0.000" + />
    - - -
    + dangerouslySetInnerHTML={"1.86"} + title="avg: 1.86, max: 1.86, median: 1.86, min: 1.86, stdev: 0.000" + />
    - - -
    + dangerouslySetInnerHTML={"1.87"} + title="avg: 1.87, max: 1.87, median: 1.87, min: 1.87, stdev: 0.000" + />
    - - -
    + dangerouslySetInnerHTML={"131"} + title="avg: 131, max: 131, median: 131, min: 131, stdev: 0.000" + />
    status @@ -40946,9 +10440,13 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "76 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "76px", } @@ -40956,6 +10454,17 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` >
    cputime @@ -40979,9 +10488,13 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "84 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "84px", } @@ -40989,6 +10502,17 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` >
    walltime @@ -41012,9 +10536,13 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "none", "boxSizing": "border-box", "flex": "68 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "68px", } @@ -41022,6 +10550,17 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` >
    memory @@ -41061,6 +10600,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -41078,6 +10618,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -41096,6 +10637,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -41114,6 +10656,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -41144,6 +10687,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -41161,6 +10705,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -41179,6 +10724,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -41197,6 +10743,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -41227,6 +10774,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -41244,6 +10792,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -41262,6 +10811,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -41280,6 +10830,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -41310,6 +10861,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -41327,6 +10879,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -41345,6 +10898,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -41363,6 +10917,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -41393,6 +10948,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -41410,6 +10966,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -41428,6 +10985,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -41446,6 +11004,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -41476,6 +11035,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -41493,6 +11053,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -41511,6 +11072,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -41529,6 +11091,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -41559,6 +11122,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -41576,6 +11140,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -41594,6 +11159,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -41612,6 +11178,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -41642,10 +11209,10 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -41672,10 +11239,10 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -41702,10 +11269,10 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -41732,10 +11299,10 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -41762,10 +11329,10 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -41792,10 +11359,10 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -41822,10 +11389,10 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -41861,7 +11428,7 @@ exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = `
    `; -exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` +exports[`Render Summary for multi-table.table.html 1`] = `
    @@ -41934,47 +11501,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` } />
    - - CPAchecker - - 1.4-svn 15944M - - - CPAchecker - - 1.4-svn 15986M - - 2015-03-03 16:13:02 CET - - 2015-03-03 18:15:20 CET - - predicateAnalysis + valueAnalysis - valueAnalysis + predicateAnalysis - -predicateAnalysis + -valueAnalysis @@ -42568,7 +12069,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` } > - -valueAnalysis + -predicateAnalysis @@ -42657,6 +12158,14 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` > @@ -42674,7 +12183,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` } />
    status @@ -42756,9 +12280,13 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "76 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "76px", } @@ -42766,6 +12294,17 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` >
    cputime @@ -42789,9 +12328,13 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "84 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "84px", } @@ -42799,6 +12342,17 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` >
    walltime @@ -42822,9 +12376,13 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "none", "boxSizing": "border-box", "flex": "68 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "68px", } @@ -42832,6 +12390,17 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` >
    memory @@ -42871,6 +12440,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -42888,6 +12458,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -42906,6 +12477,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -42924,6 +12496,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -42954,6 +12527,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -42972,6 +12546,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -42989,6 +12564,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -43006,6 +12582,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -43036,6 +12613,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -43053,6 +12631,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -43071,6 +12650,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -43089,6 +12669,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -43119,6 +12700,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -43136,6 +12718,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -43154,6 +12737,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -43172,6 +12756,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -43202,6 +12787,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -43219,6 +12805,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -43237,6 +12824,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -43255,6 +12843,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -43285,6 +12874,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -43302,6 +12892,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -43320,6 +12911,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -43338,6 +12930,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -43368,6 +12961,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -43385,6 +12979,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -43403,6 +12998,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -43421,6 +13017,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -43451,6 +13048,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -43468,6 +13066,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -43486,6 +13085,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -43504,6 +13104,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -43526,7 +13127,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = `
    status @@ -43608,9 +13224,13 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "76 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "76px", } @@ -43618,6 +13238,17 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` >
    cputime @@ -43641,9 +13272,13 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "84 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "84px", } @@ -43651,6 +13286,17 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` >
    walltime @@ -43674,9 +13320,13 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "none", "boxSizing": "border-box", "flex": "68 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "68px", } @@ -43684,6 +13334,17 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` >
    memory @@ -43723,6 +13384,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -43732,7 +13394,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` >
    @@ -43806,6 +13471,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -43824,6 +13490,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -43833,7 +13500,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` >
    @@ -43971,6 +13644,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -43980,7 +13654,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` >
    + > + - +
    + > + - +
    + > + - +
    @@ -44137,6 +13818,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -44146,7 +13828,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` >
    + > + - +
    + > + - +
    + > + - +
    + > + - +
    + > + - +
    + > + - +
    status @@ -44460,9 +14168,13 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "76 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "76px", } @@ -44470,6 +14182,17 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` >
    cputime @@ -44493,9 +14216,13 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "84 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "84px", } @@ -44503,6 +14230,17 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` >
    walltime @@ -44526,9 +14264,13 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "none", "boxSizing": "border-box", "flex": "68 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "68px", } @@ -44536,6 +14278,17 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` >
    memory @@ -44575,6 +14328,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -44584,7 +14338,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` >
    @@ -44658,6 +14415,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -44676,6 +14434,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -44685,7 +14444,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` >
    @@ -44823,6 +14588,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -44832,7 +14598,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` >
    - - -
    + dangerouslySetInnerHTML={"3.80"} + title="avg: 1.90, max: 1.95, median: 1.90, min: 1.85, stdev: 0.0493" + />
    - - -
    + dangerouslySetInnerHTML={"3.82"} + title="avg: 1.91, max: 1.96, median: 1.91, min: 1.86, stdev: 0.0493" + />
    - - -
    + dangerouslySetInnerHTML={"258"} + title="avg: 129, max: 130, median: 129, min: 129, stdev: 0.635" + />
    @@ -44989,6 +14762,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -44998,7 +14772,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` >
    - - -
    + dangerouslySetInnerHTML={"1.86"} + title="avg: 1.86, max: 1.86, median: 1.86, min: 1.86, stdev: 0.000" + />
    - - -
    + dangerouslySetInnerHTML={"1.87"} + title="avg: 1.87, max: 1.87, median: 1.87, min: 1.87, stdev: 0.000" + />
    - - -
    + dangerouslySetInnerHTML={"131"} + title="avg: 131, max: 131, median: 131, min: 131, stdev: 0.000" + />
    - - -
    + dangerouslySetInnerHTML={"1.86"} + title="avg: 1.86, max: 1.86, median: 1.86, min: 1.86, stdev: 0.000" + />
    - - -
    + dangerouslySetInnerHTML={"1.87"} + title="avg: 1.87, max: 1.87, median: 1.87, min: 1.87, stdev: 0.000" + />
    - - -
    + dangerouslySetInnerHTML={"131"} + title="avg: 131, max: 131, median: 131, min: 131, stdev: 0.000" + />
    status @@ -45312,9 +15112,13 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "76 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "76px", } @@ -45322,6 +15126,17 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` >
    cputime @@ -45345,9 +15160,13 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "84 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "84px", } @@ -45355,6 +15174,17 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` >
    walltime @@ -45378,9 +15208,13 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "none", "boxSizing": "border-box", "flex": "68 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "68px", } @@ -45388,6 +15222,17 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` >
    memory @@ -45427,6 +15272,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -45444,6 +15290,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -45462,6 +15309,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -45480,6 +15328,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -45510,6 +15359,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -45528,6 +15378,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -45545,6 +15396,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -45562,6 +15414,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -45592,6 +15445,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -45609,6 +15463,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -45627,6 +15482,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -45645,6 +15501,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -45675,6 +15532,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -45692,6 +15550,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -45710,6 +15569,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -45728,6 +15588,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -45758,6 +15619,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -45775,6 +15637,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -45793,6 +15656,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -45811,6 +15675,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -45841,6 +15706,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -45858,6 +15724,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -45876,6 +15743,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -45894,6 +15762,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -45924,6 +15793,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -45941,6 +15811,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -45959,6 +15830,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -45977,6 +15849,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -46007,6 +15880,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -46024,6 +15898,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -46042,6 +15917,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -46060,6 +15936,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -46090,10 +15967,10 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -46150,10 +16027,10 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -46180,10 +16057,10 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -46210,10 +16087,10 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -46240,10 +16117,10 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -46270,10 +16147,10 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -46300,10 +16177,10 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -46339,7 +16216,7 @@ exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = `
    `; -exports[`Render Summary for nan_and_inf.html 1`] = ` +exports[`Render Summary for multi-table-only-columns.diff.html 1`] = `
    @@ -46412,7 +16289,7 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` } />
    CPAchecker - 1.7-svn 28500M + 1.4-svn 15944M + + + CPAchecker + + 1.4-svn 15986M
    - timelimit: 900 s, memlimit: 15000 MB, CPU core limit: 2 + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1
    - apollon* + tortuga
    - Linux 4.4.0-128-generic + Linux 3.13.0-45-generic x86_64
    - CPU: Intel Xeon E3-1230 v5 @ 3.40 GHz, cores: 8, frequency: 3.8 GHz, Turbo Boost: disabled; RAM: 33553 MB + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB
    - 2018-06-27 14:40:12 CEST + 2015-03-03 16:13:02 CET + + 2015-03-03 18:15:20 CET
    - Model-Based-Selection + predicateAnalysis + + valueAnalysis + + predicateAnalysis + + valueAnalysis
    - -heap 10000M + -noout
  • - -benchmark + -setprop log.consoleLevel=WARNING
  • - -configselection-heuristic + -predicateAnalysis + +
  • + + +
    +
      +
        +
      • + + -noout + +
      • +
      • + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -valueAnalysis + +
      • +
      +
    +
    +
      +
        +
      • + + -noout + +
      • +
      • + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -predicateAnalysis + +
      • +
      +
    +
    +
      +
        +
      • + + -noout + +
      • +
      • + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -valueAnalysis
      @@ -46800,7 +16944,19 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` } } > - Properties +
    - unreach-call +
    +
    +
    +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + setup +
    + (s) +
    +
    +
    +
    +
    + SMT time +
    + (s) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    - - @@ -46903,7 +17870,7 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "300px", + "minWidth": "120px", } } > @@ -46913,9 +17880,13 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "none", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "68 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "68px", } @@ -46923,6 +17894,17 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` >
    status @@ -46944,9 +17926,13 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "76 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "76px", } @@ -46954,6 +17940,17 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` >
    cputime @@ -46977,19 +17974,34 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", - "flex": "84 0 auto", + "flex": "60 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", - "width": "84px", + "width": "60px", } } >
    - walltime + setup
    (s)
    @@ -47010,21 +18022,34 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "none", "boxSizing": "border-box", - "flex": "68 0 auto", + "flex": "132 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", - "width": "68px", + "width": "132px", } } >
    - memory -
    - (MB) + variable count
    +
    +
    +
    +
    - Aliasing -
    + className="cell" + dangerouslySetInnerHTML={2} + /> +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    - Arrays -
    -
    - Boolean -
    + className="cell" + dangerouslySetInnerHTML={"2.12"} + title="avg: 2.12, max: 2.12, median: 2.12, min: 2.12, stdev: 0.000" + /> +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    - Composite types + -
    -
    - Floats + -
    -
    - Loops + -
    -
    -
    -
    @@ -47245,6 +18345,7 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -47254,7 +18355,7 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` >
    +
    +
    +
    +
    +
    + > + - +
    + > + - +
    + > + - +
    +
    +
    + > + - +
    + > + - +
    +
    +
    +
    + - +
    @@ -47436,6 +18606,7 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -47445,15 +18616,15 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` >
    - - -
    + dangerouslySetInnerHTML={0} + />
    + > + - +
    @@ -47502,101 +18676,310 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` -
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + status +
    +
    +
    - - + cputime +
    + (s)
    +
    - - + setup +
    + (s)
    +
    - - + SMT time +
    + (s)
    +
    +
    +
    +
    +
    - - -
    + dangerouslySetInnerHTML={3} + />
    - - -
    + dangerouslySetInnerHTML={"5.66"} + title="avg: 1.89, max: 1.95, median: 1.86, min: 1.85, stdev: 0.0447" + />
    - - -
    + dangerouslySetInnerHTML={"4.22"} + title="avg: 1.41, max: 1.47, median: 1.38, min: 1.37, stdev: 0.0418" + /> +
    +
    +
    @@ -47627,6 +19029,7 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -47636,7 +19039,7 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` >
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + > + - +
    + > + - +
    + > + - +
    @@ -47818,6 +19290,7 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -47827,7 +19300,7 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` >
    -
    -
    -
    +
    +
    -
    -
    -
    @@ -48000,7 +19455,7 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "300px", + "minWidth": "120px", } } > @@ -48009,6 +19464,7 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -48026,6 +19482,7 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -48044,28 +19501,11 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", - "flex": "84 0 auto", - "minWidth": "30px", - "width": "84px", - } - } - > -
    - - -
    -
    -
    @@ -48080,6 +19520,7 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -48093,97 +19534,254 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` -
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    - - + status
    +
    - - -
    -
    -
    -
    - - + cputime +
    + (s)
    +
    - - + setup +
    + (s)
    +
    - - + variable count
    +
    +
    +
    @@ -48200,6 +19798,7 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -48209,7 +19808,7 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` >
    - - -
    + dangerouslySetInnerHTML={"3.63"} + title="avg: 1.81, max: 1.82, median: 1.81, min: 1.81, stdev: 0.00240" + />
    - - -
    + dangerouslySetInnerHTML={"2.41"} + title="avg: 1.20, max: 1.21, median: 1.20, min: 1.20, stdev: 0.00250" + />
    - - -
    + dangerouslySetInnerHTML={"0"} + title="avg: 0.00, max: 0, median: 0, min: 0, stdev: 0.00" + />
    +
    +
    - - -
    + dangerouslySetInnerHTML={1} + />
    - - -
    + dangerouslySetInnerHTML={"1.82"} + title="avg: 1.82, max: 1.82, median: 1.82, min: 1.82, stdev: 0.000" + />
    - - -
    + dangerouslySetInnerHTML={"1.21"} + title="avg: 1.21, max: 1.21, median: 1.21, min: 1.21, stdev: 0.000" + />
    - - -
    + dangerouslySetInnerHTML={"0"} + title="avg: 0.00, max: 0, median: 0, min: 0, stdev: 0.00" + />
    +
    +
    - - -
    + dangerouslySetInnerHTML={0} + />
    @@ -48374,44 +20004,35 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` -
    -
    -
    + > + - +
    @@ -48421,105 +20042,133 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` -
    +
    +
    - - -
    + className="cell" + dangerouslySetInnerHTML={1} + />
    - - -
    + dangerouslySetInnerHTML={"1.82"} + title="avg: 1.82, max: 1.82, median: 1.82, min: 1.82, stdev: 0.000" + />
    - - -
    + dangerouslySetInnerHTML={"1.21"} + title="avg: 1.21, max: 1.21, median: 1.21, min: 1.21, stdev: 0.000" + />
    - - -
    + dangerouslySetInnerHTML={"0"} + title="avg: 0.00, max: 0, median: 0, min: 0, stdev: 0.00" + />
    +
    +
    - - -
    + dangerouslySetInnerHTML={0} + />
    @@ -48534,10 +20183,11 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", - "flex": "124 0 auto", + "flex": "60 0 auto", "minWidth": "30px", - "width": "124px", + "width": "60px", } } > @@ -48552,10 +20202,11 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", - "flex": "60 0 auto", + "flex": "132 0 auto", "minWidth": "30px", - "width": "60px", + "width": "132px", } } > @@ -48573,7 +20224,7 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "300px", + "minWidth": "120px", } } > @@ -48582,6 +20233,7 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -48599,6 +20251,7 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -48617,10 +20270,11 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", - "flex": "84 0 auto", + "flex": "60 0 auto", "minWidth": "30px", - "width": "84px", + "width": "60px", } } > @@ -48635,10 +20289,11 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", - "flex": "68 0 auto", + "flex": "132 0 auto", "minWidth": "30px", - "width": "68px", + "width": "132px", } } > @@ -48648,29 +20303,24 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` -
    -
    +
    -
    - - -
    -
    + } + >
    - - -
    + dangerouslySetInnerHTML={0} + />
    -
    - - -
    -
    -
    @@ -48743,10 +20376,11 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", - "flex": "60 0 auto", + "flex": "132 0 auto", "minWidth": "30px", - "width": "60px", + "width": "132px", } } > @@ -48773,10 +20407,10 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -48803,40 +20437,10 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "150 0 auto", - "minWidth": "0px", - "position": "relative", - "width": "150px", - } - } - > - local summary - -
    -
    @@ -48863,10 +20467,10 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -48893,10 +20497,10 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -48923,10 +20527,10 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -48953,10 +20557,10 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -48983,10 +20587,10 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -49022,7 +20626,7 @@ exports[`Render Summary for nan_and_inf.html 1`] = ` `; -exports[`Render Summary for predicateAnalysis.table.html 1`] = ` +exports[`Render Summary for multi-table-only-columns.table.html 1`] = `
    @@ -49095,7 +20699,7 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` } />
    - Run set + Run set + + + + predicateAnalysis + + valueAnalysis + + predicateAnalysis + + valueAnalysis +
    + Options + + +
      +
        +
      • + + -noout + +
      • +
      • + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -predicateAnalysis + +
      • +
      +
    +
    +
      +
        +
      • + + -noout + +
      • +
      • + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -valueAnalysis + +
      • +
      +
    +
    +
      +
        +
      • + + -noout + +
      • +
      • + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -predicateAnalysis + +
      • +
      +
    +
    +
      +
        +
      • + + -noout + +
      • +
      • + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -valueAnalysis + +
      • +
      +
    +
    + - predicateAnalysis - - predicateAnalysis +
    +
    +
    +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + setup +
    + (s) +
    +
    +
    +
    +
    + SMT time +
    + (s) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    - Options - -
      -
        -
      • - - -noout - -
      • -
      • - - -setprop log.consoleLevel=WARNING - -
      • -
      • - - -predicateAnalysis - -
      • -
      -
    +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + setup +
    + (s) +
    +
    +
    +
    +
    + variable count +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    -
      -
        -
      • - - -noout - -
      • -
      • - - -setprop log.consoleLevel=WARNING - -
      • -
      • - - -predicateAnalysis - -
      • -
      -
    -
    - - -
    status @@ -49695,9 +23366,13 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "76 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "76px", } @@ -49705,6 +23380,17 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` >
    cputime @@ -49728,19 +23414,34 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", - "flex": "84 0 auto", + "flex": "60 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", - "width": "84px", + "width": "60px", } } >
    - walltime + setup
    (s)
    @@ -49761,21 +23462,36 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "none", "boxSizing": "border-box", - "flex": "68 0 auto", + "flex": "84 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", - "width": "68px", + "width": "84px", } } >
    - memory + SMT time
    - (MB) + (s)
    @@ -49893,6 +23613,7 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -49911,6 +23632,7 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -49920,7 +23642,7 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` >
    + > + - +
    @@ -49975,6 +23700,7 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -49992,6 +23718,7 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -50001,8 +23728,8 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` >
    @@ -50058,6 +23787,7 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -50075,6 +23805,7 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -50084,8 +23815,8 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` >
    @@ -50141,6 +23874,7 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -50158,6 +23892,7 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -50167,8 +23902,8 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` >
    @@ -50224,6 +23961,7 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -50241,6 +23979,7 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -50250,8 +23989,8 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` >
    @@ -50307,6 +24048,7 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -50324,6 +24066,7 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -50333,8 +24076,8 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` >
    @@ -50390,6 +24135,7 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -50407,6 +24153,7 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -50425,10 +24172,11 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", - "flex": "84 0 auto", + "flex": "60 0 auto", "minWidth": "30px", - "width": "84px", + "width": "60px", } } > @@ -50443,10 +24191,11 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", - "flex": "68 0 auto", + "flex": "84 0 auto", "minWidth": "30px", - "width": "68px", + "width": "84px", } } > @@ -50465,7 +24214,7 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = `
    status @@ -50547,9 +24311,13 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "76 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "76px", } @@ -50557,6 +24325,17 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` >
    cputime @@ -50580,19 +24359,34 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", - "flex": "84 0 auto", + "flex": "60 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", - "width": "84px", + "width": "60px", } } >
    - walltime + setup
    (s)
    @@ -50613,21 +24407,34 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "none", "boxSizing": "border-box", - "flex": "68 0 auto", + "flex": "132 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", - "width": "68px", + "width": "132px", } } >
    - memory -
    - (MB) + variable count
    @@ -50745,6 +24556,7 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -50763,6 +24575,7 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -50772,7 +24585,7 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` >
    + > + - +
    @@ -50827,6 +24643,7 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -50836,7 +24653,7 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` >
    @@ -50910,6 +24730,7 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -50919,7 +24740,7 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` >
    + > + - +
    + > + - +
    + > + - +
    @@ -51076,6 +24904,7 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -51085,7 +24914,7 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` >
    + > + - +
    + > + - +
    + > + - +
    + > + - +
    + > + - +
    + > + - +
    @@ -51295,10 +25134,11 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", - "flex": "68 0 auto", + "flex": "132 0 auto", "minWidth": "30px", - "width": "68px", + "width": "132px", } } > @@ -51325,10 +25165,10 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -51385,10 +25225,10 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -51415,10 +25255,10 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -51445,10 +25285,10 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -51475,10 +25315,10 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -51505,10 +25345,10 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -51535,10 +25375,10 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -51574,7 +25414,7 @@ exports[`Render Summary for predicateAnalysis.table.html 1`] = `
    `; -exports[`Render Summary for predicateAnalysis-reverse.table.html 1`] = ` +exports[`Render Summary for multi-table-with-columns.diff.html 1`] = `
    @@ -51647,7 +25487,7 @@ exports[`Render Summary for predicateAnalysis-reverse.table.html 1`] = ` } />
    CPAchecker - 1.4-svn 15986M + 1.4-svn 15944M CPAchecker - 1.4-svn 15944M + 1.4-svn 15986M
    - 2015-03-03 18:15:20 CET + 2015-03-03 16:13:02 CET - 2015-03-03 16:13:02 CET + 2015-03-03 18:15:20 CET
    + valueAnalysis + predicateAnalysis + valueAnalysis +
    +
      +
        +
      • + + -noout + +
      • +
      • + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -valueAnalysis + +
      • +
      +
    +
    +
      +
        +
      • + + -noout + +
      • +
      • + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -valueAnalysis + +
      • +
      +
    +
    @@ -52165,7 +26169,7 @@ exports[`Render Summary for predicateAnalysis-reverse.table.html 1`] = ` } />
    status @@ -52247,9 +26266,13 @@ exports[`Render Summary for predicateAnalysis-reverse.table.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "76 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "76px", } @@ -52257,6 +26280,17 @@ exports[`Render Summary for predicateAnalysis-reverse.table.html 1`] = ` >
    cputime @@ -52280,19 +26314,34 @@ exports[`Render Summary for predicateAnalysis-reverse.table.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", - "flex": "84 0 auto", + "flex": "60 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", - "width": "84px", + "width": "60px", } } >
    - walltime + setup
    (s)
    @@ -52313,21 +26362,36 @@ exports[`Render Summary for predicateAnalysis-reverse.table.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "none", "boxSizing": "border-box", - "flex": "68 0 auto", + "flex": "84 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", - "width": "68px", + "width": "84px", } } >
    - memory + SMT time
    - (MB) + (s)
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    @@ -52610,6 +26600,7 @@ exports[`Render Summary for predicateAnalysis-reverse.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -52627,6 +26618,7 @@ exports[`Render Summary for predicateAnalysis-reverse.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -52636,8 +26628,8 @@ exports[`Render Summary for predicateAnalysis-reverse.table.html 1`] = ` >
    @@ -52693,6 +26687,7 @@ exports[`Render Summary for predicateAnalysis-reverse.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -52702,7 +26697,7 @@ exports[`Render Summary for predicateAnalysis-reverse.table.html 1`] = ` >
    + > + - +
    + > + - +
    + > + - +
    @@ -52859,6 +26861,7 @@ exports[`Render Summary for predicateAnalysis-reverse.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -52876,6 +26879,7 @@ exports[`Render Summary for predicateAnalysis-reverse.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -52885,8 +26889,8 @@ exports[`Render Summary for predicateAnalysis-reverse.table.html 1`] = ` >
    @@ -52942,6 +26948,7 @@ exports[`Render Summary for predicateAnalysis-reverse.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -52959,6 +26966,7 @@ exports[`Render Summary for predicateAnalysis-reverse.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -52977,10 +26985,11 @@ exports[`Render Summary for predicateAnalysis-reverse.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", - "flex": "84 0 auto", + "flex": "60 0 auto", "minWidth": "30px", - "width": "84px", + "width": "60px", } } > @@ -52995,10 +27004,11 @@ exports[`Render Summary for predicateAnalysis-reverse.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", - "flex": "68 0 auto", + "flex": "84 0 auto", "minWidth": "30px", - "width": "68px", + "width": "84px", } } > @@ -53017,7 +27027,7 @@ exports[`Render Summary for predicateAnalysis-reverse.table.html 1`] = `
    status @@ -53099,9 +27124,13 @@ exports[`Render Summary for predicateAnalysis-reverse.table.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "76 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "76px", } @@ -53109,6 +27138,17 @@ exports[`Render Summary for predicateAnalysis-reverse.table.html 1`] = ` >
    cputime @@ -53132,54 +27172,36 @@ exports[`Render Summary for predicateAnalysis-reverse.table.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", - "flex": "84 0 auto", + "flex": "60 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", - "width": "84px", + "width": "60px", } } >
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory + setup
    - (MB) + (s)
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    - - + variable count
    +
    +
    +
    @@ -53462,6 +27369,7 @@ exports[`Render Summary for predicateAnalysis-reverse.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -53471,7 +27379,7 @@ exports[`Render Summary for predicateAnalysis-reverse.table.html 1`] = ` >
    @@ -53545,6 +27456,7 @@ exports[`Render Summary for predicateAnalysis-reverse.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -53554,7 +27466,7 @@ exports[`Render Summary for predicateAnalysis-reverse.table.html 1`] = ` >
    + > + - +
    + > + - +
    + > + - +
    @@ -53711,6 +27630,7 @@ exports[`Render Summary for predicateAnalysis-reverse.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -53720,7 +27640,7 @@ exports[`Render Summary for predicateAnalysis-reverse.table.html 1`] = ` >
    + > + - +
    + > + - +
    + > + - +
    @@ -53847,10 +27773,11 @@ exports[`Render Summary for predicateAnalysis-reverse.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", - "flex": "68 0 auto", + "flex": "132 0 auto", "minWidth": "30px", - "width": "68px", + "width": "132px", } } > @@ -53861,3159 +27788,6815 @@ exports[`Render Summary for predicateAnalysis-reverse.table.html 1`] = `
    -
    -
    -
    -
    -
    -
    -
    - all results - -
    - local summary - -
    - correct results - -
    - correct true - -
    - correct false - -
    - incorrect results - -
    - incorrect true - -
    - incorrect false - -
    -
    -

    - Generated by - - BenchExec (test) - -

    -
    -`; - -exports[`Render Summary for rows-with-scores.html 1`] = ` -
    -
    -

    - Benchmark Setup -

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - Tool - -
    - Limits - - timelimit: -, memlimit: -, CPU core limit: - -
    - Host - - t460p -
    - OS - - Linux-5.0.0-37-generic-x86_64-with-Ubuntu-18.04-bionic - - Linux-5.3.0-53-generic-x86_64-with-Ubuntu-18.04-bionic -
    - System - - CPU: Intel Core i5-6440HQ CPU @ 2.60GHz, cores: 4, frequency: 3500 MHz, Turbo Boost: enabled; RAM: 33587 MB - - CPU: Intel Core i5-6440HQ CPU @ 2.60GHz, cores: 4, frequency: 3500 MHz, Turbo Boost: enabled; RAM: 33537 MB -
    - Date of execution - - 2019-12-20 15:32:33 CET - - 2020-06-10 09:17:06 CEST -
    - Run set - - 0 - - 0 -
    - Options - -
      -
    • - - true - -
    • -
    -
    -
      -
    • - - true - -
    • -
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + + + + +
    - Properties - - test -
    -
    -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - DummyTool 2019-12-20 15:32:33 CET 0 - -
    -
    -
    -
    - - DummyTool 2020-06-10 09:17:06 CEST 0 - -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    - cpuenergy -
    - (J) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - cpuenergy -
    - (J) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - + > +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + analysis +
    + (s) +
    +
    +
    +
    +
    + SMT time +
    + (s) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    +
    +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    + className="table-content" + > +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + analysis +
    + (s) +
    +
    +
    +
    +
    + variable count +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`Render Summary for multi-table-with-columns.table.html 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M + + + CPAchecker + + 1.4-svn 15986M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET + + 2015-03-03 18:15:20 CET +
    + Run set + + + predicateAnalysis + + valueAnalysis + + predicateAnalysis + + valueAnalysis +
    + Options + + +
      -
      -
      -
      -
      -
      -
      -
      -
      -
      - - -
      -
      -
      -
      - - -
      -
      -
      -
      - - -
      -
      -
      -
      - - -
      -
      -
      -
      -
      -
      -
      -
      - - -
      -
      -
      -
      - - -
      -
      -
      -
      - - -
      -
      -
      -
      - - -
      -
      -
      -
      +
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        +
      • -
        -
        -
        + -noout + +
      • +
      • -
        -
        -
        + -setprop log.consoleLevel=WARNING + +
      • +
      • -
        -
        -
      • -
        + -predicateAnalysis + + +
      +
    +
    +
      +
        -
        -
        -
        -
        -
        + -noout + + +
      • -
        -
        -
        + -setprop log.consoleLevel=WARNING + +
      • +
      • -
        -
        -
        + -valueAnalysis + +
      • +
      +
    +
    +
      +
        -
        -
        -
        +
      • -
        -
        -
        + -noout + +
      • +
      • -
        -
        -
        -
        + -setprop log.consoleLevel=WARNING + +
      • +
      • -
        -
        -
        + -predicateAnalysis + +
      • +
      +
    +
    +
      +
        +
      • -
        -
        -
        + -noout + +
      • +
      • -
        -
        -
        + -setprop log.consoleLevel=WARNING + +
      • +
      • -
        -
        + + -valueAnalysis + +
      • +
      +
    +
    + + + +
    +
    + className="table-content" + > +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + setup +
    + (s) +
    +
    +
    +
    +
    + SMT time +
    + (s) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    - - +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + setup +
    + (s) +
    +
    +
    +
    +
    + variable count +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + analysis +
    + (s) +
    +
    +
    +
    +
    + SMT time +
    + (s) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    - - +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + analysis +
    + (s) +
    +
    +
    +
    +
    + variable count +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    -
    -
    -
    -
    +
    + all results + +
    + local summary + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +

    Generated by @@ -57029,7 +34612,7 @@ exports[`Render Summary for rows-with-scores.html 1`] = `

    `; -exports[`Render Summary for simple-table-with-columns.table.html 1`] = ` +exports[`Render Summary for multi-table-with-diff-over-column.diff.html 1`] = `
    @@ -57087,7 +34670,77 @@ exports[`Render Summary for simple-table-with-columns.table.html 1`] = ` } } > - Tool + Tool + + + + + CPAchecker + + 1.4-svn 15944M + + + + CPAchecker + + 1.4-svn 15986M + + + + + Limits - - CPAchecker - - 1.4-svn 15944M + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 @@ -57137,7 +34783,7 @@ exports[`Render Summary for simple-table-with-columns.table.html 1`] = ` } } > - Limits + Host - timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 + tortuga @@ -57180,7 +34826,7 @@ exports[`Render Summary for simple-table-with-columns.table.html 1`] = ` } } > - Host + OS - tortuga + Linux 3.13.0-45-generic x86_64 @@ -57223,7 +34869,7 @@ exports[`Render Summary for simple-table-with-columns.table.html 1`] = ` } } > - OS + System - Linux 3.13.0-45-generic x86_64 + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB @@ -57266,7 +34912,7 @@ exports[`Render Summary for simple-table-with-columns.table.html 1`] = ` } } > - System + Date of execution - CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB + 2015-03-03 16:13:02 CET + + + 2015-03-03 18:15:20 CET + + + + + Run set + + + + predicateAnalysis + + + valueAnalysis + + + predicateAnalysis + + + valueAnalysis + + + + + Options + + + +
      +
        +
      • + + -noout + +
      • +
      • + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -predicateAnalysis + +
      • +
      +
    + + +
      +
        +
      • + + -noout + +
      • +
      • + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -valueAnalysis + +
      • +
      +
    + + +
      +
        +
      • + + -noout + +
      • +
      • + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -predicateAnalysis + +
      • +
      +
    + + +
      +
        +
      • + + -noout + +
      • +
      • + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -valueAnalysis + +
      • +
      +
    + + + + + + + + +
    +
    +
    +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + setup +
    + (s) +
    +
    +
    +
    +
    + SMT time +
    + (s) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    - - - - Date of execution - - - 2015-03-03 16:13:02 CET - - - - - Run set - - +
    +
    +
    +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + setup +
    + (s) +
    +
    +
    +
    +
    + variable count +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - predicateAnalysis +
    +
    +
    +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + setup +
    + (s) +
    +
    +
    +
    +
    + SMT time +
    + (s) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    - - - - Options - - -
      -
        -
      • - - -noout - -
      • -
      • - - -setprop log.consoleLevel=WARNING - -
      • -
      • - - -predicateAnalysis - -
      • -
      -
    - - - - - - - - @@ -57550,7 +37980,7 @@ exports[`Render Summary for simple-table-with-columns.table.html 1`] = ` Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "90px", + "minWidth": "120px", } } > @@ -57560,9 +37990,13 @@ exports[`Render Summary for simple-table-with-columns.table.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "none", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "68 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "68px", } @@ -57570,6 +38004,17 @@ exports[`Render Summary for simple-table-with-columns.table.html 1`] = ` >
    status @@ -57591,19 +38036,34 @@ exports[`Render Summary for simple-table-with-columns.table.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", - "flex": "84 0 auto", + "flex": "76 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", - "width": "84px", + "width": "76px", } } >
    - CPU Time + cputime
    (s)
    @@ -57624,9 +38084,13 @@ exports[`Render Summary for simple-table-with-columns.table.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "60 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "60px", } @@ -57634,6 +38098,17 @@ exports[`Render Summary for simple-table-with-columns.table.html 1`] = ` >
    setup @@ -57651,6 +38126,52 @@ exports[`Render Summary for simple-table-with-columns.table.html 1`] = ` } />
    +
    +
    + variable count +
    +
    +
    @@ -57673,6 +38194,7 @@ exports[`Render Summary for simple-table-with-columns.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -57682,7 +38204,7 @@ exports[`Render Summary for simple-table-with-columns.table.html 1`] = ` >
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    @@ -57803,6 +38281,7 @@ exports[`Render Summary for simple-table-with-columns.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -57812,7 +38291,7 @@ exports[`Render Summary for simple-table-with-columns.table.html 1`] = ` >
    +
    +
    +
    @@ -57859,7 +38359,7 @@ exports[`Render Summary for simple-table-with-columns.table.html 1`] = ` Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "90px", + "minWidth": "120px", } } > @@ -57868,6 +38368,7 @@ exports[`Render Summary for simple-table-with-columns.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -57877,7 +38378,7 @@ exports[`Render Summary for simple-table-with-columns.table.html 1`] = ` >
    + > + - +
    + > + - +
    +
    +
    +
    + - +
    @@ -57933,6 +38455,7 @@ exports[`Render Summary for simple-table-with-columns.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -57942,7 +38465,7 @@ exports[`Render Summary for simple-table-with-columns.table.html 1`] = ` >
    +
    +
    +
    @@ -57989,7 +38533,7 @@ exports[`Render Summary for simple-table-with-columns.table.html 1`] = ` Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "90px", + "minWidth": "120px", } } > @@ -57998,6 +38542,7 @@ exports[`Render Summary for simple-table-with-columns.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -58007,7 +38552,7 @@ exports[`Render Summary for simple-table-with-columns.table.html 1`] = ` >
    + > + - +
    + > + - +
    +
    +
    +
    + - +
    @@ -58063,6 +38629,7 @@ exports[`Render Summary for simple-table-with-columns.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -58072,7 +38639,7 @@ exports[`Render Summary for simple-table-with-columns.table.html 1`] = ` >
    + > + - +
    + > + - +
    +
    +
    +
    + - +
    @@ -58128,6 +38716,7 @@ exports[`Render Summary for simple-table-with-columns.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -58145,10 +38734,11 @@ exports[`Render Summary for simple-table-with-columns.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", - "flex": "84 0 auto", + "flex": "76 0 auto", "minWidth": "30px", - "width": "84px", + "width": "76px", } } > @@ -58163,6 +38753,7 @@ exports[`Render Summary for simple-table-with-columns.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "60 0 auto", "minWidth": "30px", @@ -58176,6 +38767,25 @@ exports[`Render Summary for simple-table-with-columns.table.html 1`] = ` -
    +
    +
    + - +
    +
    @@ -58193,10 +38803,10 @@ exports[`Render Summary for simple-table-with-columns.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -58223,40 +38833,10 @@ exports[`Render Summary for simple-table-with-columns.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "150 0 auto", - "minWidth": "0px", - "position": "relative", - "width": "150px", - } - } - > - local summary - - - - - @@ -58283,10 +38863,10 @@ exports[`Render Summary for simple-table-with-columns.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -58313,10 +38893,10 @@ exports[`Render Summary for simple-table-with-columns.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -58343,10 +38923,10 @@ exports[`Render Summary for simple-table-with-columns.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -58373,10 +38953,10 @@ exports[`Render Summary for simple-table-with-columns.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -58403,10 +38983,10 @@ exports[`Render Summary for simple-table-with-columns.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -58442,7 +39022,7 @@ exports[`Render Summary for simple-table-with-columns.table.html 1`] = `
    `; -exports[`Render Summary for simple-table-with-links.table.html 1`] = ` +exports[`Render Summary for multi-table-with-diff-over-column.table.html 1`] = `
    @@ -58515,7 +39095,7 @@ exports[`Render Summary for simple-table-with-links.table.html 1`] = ` } /> 1.4-svn 15944M + + + CPAchecker + + 1.4-svn 15986M + 2015-03-03 16:13:02 CET - - - - Run set - - + 2015-03-03 18:15:20 CET + + + + + Run set + + + + predicateAnalysis + + + valueAnalysis + + + predicateAnalysis + + + valueAnalysis + + + + + Options + + + +
      +
        +
      • + + -noout + +
      • +
      • + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -predicateAnalysis + +
      • +
      +
    + + +
      +
        +
      • + + -noout + +
      • +
      • + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -valueAnalysis + +
      • +
      +
    + + - predicateAnalysis - - - - - Options - - + > +
      +
    • + + -noout + +
    • +
    • + + -setprop log.consoleLevel=WARNING + +
    • +
    • + + -predicateAnalysis + +
    • +
    + + - -predicateAnalysis + -valueAnalysis @@ -58905,6 +39752,14 @@ exports[`Render Summary for simple-table-with-links.table.html 1`] = ` > @@ -58922,7 +39777,7 @@ exports[`Render Summary for simple-table-with-links.table.html 1`] = ` } /> @@ -58963,7 +39818,7 @@ exports[`Render Summary for simple-table-with-links.table.html 1`] = ` Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "60px", + "minWidth": "120px", } } > @@ -58973,9 +39828,13 @@ exports[`Render Summary for simple-table-with-links.table.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "none", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "68 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "68px", } @@ -58983,6 +39842,17 @@ exports[`Render Summary for simple-table-with-links.table.html 1`] = ` >
    status @@ -59004,9 +39874,13 @@ exports[`Render Summary for simple-table-with-links.table.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "76 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "76px", } @@ -59014,6 +39888,17 @@ exports[`Render Summary for simple-table-with-links.table.html 1`] = ` >
    cputime @@ -59031,6 +39916,102 @@ exports[`Render Summary for simple-table-with-links.table.html 1`] = ` } />
    +
    +
    + setup +
    + (s) +
    +
    +
    +
    +
    + SMT time +
    + (s) +
    +
    +
    @@ -59053,6 +40034,7 @@ exports[`Render Summary for simple-table-with-links.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -59070,6 +40052,7 @@ exports[`Render Summary for simple-table-with-links.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -59083,6 +40066,44 @@ exports[`Render Summary for simple-table-with-links.table.html 1`] = ` title="avg: 2.18, max: 2.27, median: 2.19, min: 2.06, stdev: 0.0719" />
    +
    +
    +
    +
    +
    +
    @@ -59100,6 +40121,7 @@ exports[`Render Summary for simple-table-with-links.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -59118,6 +40140,7 @@ exports[`Render Summary for simple-table-with-links.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -59130,6 +40153,44 @@ exports[`Render Summary for simple-table-with-links.table.html 1`] = ` dangerouslySetInnerHTML={"10.9 "} />
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    @@ -59147,6 +40208,7 @@ exports[`Render Summary for simple-table-with-links.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -59164,6 +40226,7 @@ exports[`Render Summary for simple-table-with-links.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -59177,6 +40240,44 @@ exports[`Render Summary for simple-table-with-links.table.html 1`] = ` title="avg: 2.16, max: 2.23, median: 2.19, min: 2.06, stdev: 0.0730" />
    +
    +
    +
    +
    +
    +
    @@ -59194,6 +40295,7 @@ exports[`Render Summary for simple-table-with-links.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -59211,6 +40313,7 @@ exports[`Render Summary for simple-table-with-links.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -59224,6 +40327,44 @@ exports[`Render Summary for simple-table-with-links.table.html 1`] = ` title="avg: 2.14, max: 2.23, median: 2.14, min: 2.06, stdev: 0.0854" />
    +
    +
    +
    +
    +
    +
    @@ -59241,6 +40382,7 @@ exports[`Render Summary for simple-table-with-links.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -59258,6 +40400,7 @@ exports[`Render Summary for simple-table-with-links.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -59271,6 +40414,44 @@ exports[`Render Summary for simple-table-with-links.table.html 1`] = ` title="avg: 2.19, max: 2.19, median: 2.19, min: 2.19, stdev: 0.000" />
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    @@ -59288,16 +40556,55 @@ exports[`Render Summary for simple-table-with-links.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", - "width": "68px", + "width": "68px", + } + } + > +
    +
    +
    +
    +
    +
    @@ -59326,7 +40634,7 @@ exports[`Render Summary for simple-table-with-links.table.html 1`] = ` Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "60px", + "minWidth": "120px", } } > @@ -59335,6 +40643,7 @@ exports[`Render Summary for simple-table-with-links.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -59344,7 +40653,7 @@ exports[`Render Summary for simple-table-with-links.table.html 1`] = ` >
    + > + - +
    -
    -
    + > + - +
    @@ -59420,745 +40721,1896 @@ exports[`Render Summary for simple-table-with-links.table.html 1`] = `
    - - - - all results - - - - - - local summary - - - - - - correct results - - - - - - correct true - - - - - - correct false - - - - - - incorrect results - - - - - - incorrect true - - - - - - incorrect false - - - - - -
    -

    - Generated by - - BenchExec (test) - -

    -
    -`; - -exports[`Render Summary for simple-table-with-numberOfDigits.table.html 1`] = ` -
    -

    - Benchmark Setup -

    -
    -
    - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + - - - - + + + + + + + + - - + + + + + + + + + + + + + + + + + + @@ -63673,7 +48630,7 @@ exports[`Render Summary for smt.diff.html 1`] = ` } } > - Limits + Date of execution - - - + 2015-03-03 18:15:20 CET + @@ -63759,7 +48712,7 @@ exports[`Render Summary for smt.diff.html 1`] = ` } } > - OS + Run set - - - + predicateAnalysis + @@ -63845,7 +48794,7 @@ exports[`Render Summary for smt.diff.html 1`] = ` } } > - Date of execution + Options + + @@ -63901,7 +49084,19 @@ exports[`Render Summary for smt.diff.html 1`] = ` } } > - Run set + - - - - - - - - - - - - - - - -
    - Tool - - - - CPAchecker - - 1.4-svn 15944M -
    - Limits - - - timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 -
    - Host - - - tortuga -
    - OS - - - Linux 3.13.0-45-generic x86_64 -
    - System - - CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    +
    +
    +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + setup +
    + (s) +
    +
    +
    +
    +
    + variable count +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    - Date of execution - - 2015-03-03 16:13:02 CET -
    - Run set - - - predicateAnalysis +
    +
    +
    +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + setup +
    + (s) +
    +
    +
    +
    +
    + SMT time +
    + (s) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    - Options - -
      -
        -
      • - - -noout - -
      • -
      • - - -setprop log.consoleLevel=WARNING - -
      • -
      • - - -predicateAnalysis - -
      • -
      -
    -
    - - -
    status @@ -60240,9 +42707,13 @@ exports[`Render Summary for simple-table-with-numberOfDigits.table.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "76 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "76px", } @@ -60250,6 +42721,17 @@ exports[`Render Summary for simple-table-with-numberOfDigits.table.html 1`] = ` >
    cputime @@ -60273,19 +42755,34 @@ exports[`Render Summary for simple-table-with-numberOfDigits.table.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", - "flex": "84 0 auto", + "flex": "60 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", - "width": "84px", + "width": "60px", } } >
    - walltime + setup
    (s)
    @@ -60306,19 +42803,34 @@ exports[`Render Summary for simple-table-with-numberOfDigits.table.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "none", "boxSizing": "border-box", - "flex": "92 0 auto", + "flex": "132 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", - "width": "92px", + "width": "132px", } } >
    - memory + variable count
    @@ -60436,6 +42952,7 @@ exports[`Render Summary for simple-table-with-numberOfDigits.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -60454,6 +42971,7 @@ exports[`Render Summary for simple-table-with-numberOfDigits.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -60463,7 +42981,7 @@ exports[`Render Summary for simple-table-with-numberOfDigits.table.html 1`] = ` >
    + > + - +
    @@ -60518,6 +43039,7 @@ exports[`Render Summary for simple-table-with-numberOfDigits.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -60527,7 +43049,7 @@ exports[`Render Summary for simple-table-with-numberOfDigits.table.html 1`] = ` >
    @@ -60601,6 +43126,7 @@ exports[`Render Summary for simple-table-with-numberOfDigits.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -60610,7 +43136,7 @@ exports[`Render Summary for simple-table-with-numberOfDigits.table.html 1`] = ` >
    + > + - +
    + > + - +
    + > + - +
    @@ -60767,6 +43300,7 @@ exports[`Render Summary for simple-table-with-numberOfDigits.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -60776,7 +43310,7 @@ exports[`Render Summary for simple-table-with-numberOfDigits.table.html 1`] = ` >
    + > + - +
    + > + - +
    + > + - +
    + > + - +
    + > + - +
    + > + - +
    @@ -60986,10 +43530,11 @@ exports[`Render Summary for simple-table-with-numberOfDigits.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", - "flex": "92 0 auto", + "flex": "132 0 auto", "minWidth": "30px", - "width": "92px", + "width": "132px", } } > @@ -61016,10 +43561,10 @@ exports[`Render Summary for simple-table-with-numberOfDigits.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -61076,10 +43621,10 @@ exports[`Render Summary for simple-table-with-numberOfDigits.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -61106,10 +43651,10 @@ exports[`Render Summary for simple-table-with-numberOfDigits.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -61136,10 +43681,10 @@ exports[`Render Summary for simple-table-with-numberOfDigits.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -61166,10 +43711,10 @@ exports[`Render Summary for simple-table-with-numberOfDigits.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -61196,10 +43741,10 @@ exports[`Render Summary for simple-table-with-numberOfDigits.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -61226,10 +43771,10 @@ exports[`Render Summary for simple-table-with-numberOfDigits.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -61265,7 +43810,7 @@ exports[`Render Summary for simple-table-with-numberOfDigits.table.html 1`] = `
    `; -exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` +exports[`Render Summary for multi-table-with-wildcards.diff.html 1`] = `
    @@ -61338,7 +43883,47 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` } />
    + + CPAchecker + + 1.4-svn 15944M + + + CPAchecker + + 1.4-svn 15986M + 1.4-svn 15944M + + CPAchecker + + 1.4-svn 15986M +
    + 2015-03-03 16:13:02 CET + + 2015-03-03 18:15:20 CET + 2015-03-03 16:13:02 CET + 2015-03-03 18:15:20 CET +
    + predicateAnalysis + predicateAnalysis + valueAnalysis + + valueAnalysis +
    +
      +
        +
      • + + -noout + +
      • +
      • + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -predicateAnalysis + +
      • +
      +
    +
    - - +
      +
        +
      • + + -noout + +
      • +
      • + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -valueAnalysis + +
      • +
      +
    +
    +
      +
        +
      • + + -noout + +
      • +
      • + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -valueAnalysis + +
      • +
      +
    +
    + + + +
    +
    +
    +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    @@ -61780,167 +45524,908 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` className="table-header" >
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    - status -
    + className="cell" + dangerouslySetInnerHTML={2} + /> +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    - cputime -
    - (ms) + -
    -
    +
    + } + > +
    + - +
    - cputime-h -
    - (h) + -
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    - walltime -
    - (s) + -
    +
    +
    + - +
    +
    +
    + } + > +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    - walltime -
    - (ns) + status
    - walltime + cputime
    - (Gs) + (s)
    - memory + walltime
    - (MB) + (s)
    - memory-GB + memory
    - (GB) + (MB)
    @@ -62074,6 +46604,7 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -62083,7 +46614,7 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` >
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    @@ -62220,7 +46682,7 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "240px", + "minWidth": "120px", } } > @@ -62229,6 +46691,7 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -62238,15 +46701,15 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` >
    - - -
    + dangerouslySetInnerHTML={1} + />
    +
    +
    + > + - +
    @@ -62350,10 +46834,11 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", - "flex": "92 0 auto", + "flex": "68 0 auto", "minWidth": "30px", - "width": "92px", + "width": "68px", } } > @@ -62371,7 +46856,7 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "240px", + "minWidth": "120px", } } > @@ -62380,6 +46865,7 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -62389,7 +46875,7 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` >
    +
    +
    + > + - +
    + > + - +
    + > + - +
    @@ -62535,6 +47039,7 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -62544,7 +47049,7 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` >
    + > + - +
    + > + - +
    + > + - +
    +
    +
    + > + - +
    + > + - +
    + > + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + status +
    +
    + cputime +
    + (s) +
    +
    + walltime +
    + (s) +
    +
    +
    + memory +
    + (MB) +
    +
    -
    +
    +
    +
    +
    @@ -62836,7 +47540,7 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "240px", + "minWidth": "120px", } } > @@ -62845,6 +47549,7 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -62862,6 +47567,7 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -62871,8 +47577,8 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` >
    +
    +
    + > + - +
    + > + - +
    + > + - +
    @@ -63000,6 +47723,7 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -63017,6 +47741,7 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -63026,8 +47751,8 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` >
    +
    +
    + > + - +
    + > + - +
    + > + - +
    @@ -63155,6 +47897,7 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -63172,6 +47915,7 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -63190,10 +47934,11 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", - "flex": "92 0 auto", + "flex": "84 0 auto", "minWidth": "30px", - "width": "92px", + "width": "84px", } } > @@ -63208,10 +47953,11 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", - "flex": "84 0 auto", + "flex": "68 0 auto", "minWidth": "30px", - "width": "84px", + "width": "68px", } } > @@ -63221,33 +47967,46 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` -
    +
    +
    - - -
    + dangerouslySetInnerHTML={0} + />
    @@ -63262,10 +48021,11 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", - "flex": "68 0 auto", + "flex": "84 0 auto", "minWidth": "30px", - "width": "68px", + "width": "84px", } } > @@ -63280,10 +48040,11 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", - "flex": "92 0 auto", + "flex": "68 0 auto", "minWidth": "30px", - "width": "92px", + "width": "68px", } } > @@ -63310,10 +48071,10 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -63340,40 +48101,10 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "150 0 auto", - "minWidth": "0px", - "position": "relative", - "width": "150px", - } - } - > - local summary - -
    -
    @@ -63400,10 +48131,10 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -63430,10 +48161,10 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -63460,10 +48191,10 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -63490,10 +48221,10 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -63520,10 +48251,10 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -63559,7 +48290,7 @@ exports[`Render Summary for simple-table-with-scaling.table.html 1`] = ` `; -exports[`Render Summary for smt.diff.html 1`] = ` +exports[`Render Summary for multi-table-with-wildcards.table.html 1`] = `
    @@ -63632,7 +48363,7 @@ exports[`Render Summary for smt.diff.html 1`] = ` } />
    - MathSAT5.3.5 + + CPAchecker + + 1.4-svn 15944M + + CPAchecker + + 1.4-svn 15986M + + + CPAchecker + + 1.4-svn 15944M + + + CPAchecker + + 1.4-svn 15986M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + - SMTInterpol2.1-183-g4d3bb9f + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB
    - timelimit: 10 s, memlimit: 100 MB, CPU core limit: 1 + 2015-03-03 16:13:02 CET
    - Host - + > + 2015-03-03 16:13:02 CET + - tortuga + 2015-03-03 18:15:20 CET
    - Linux 3.13.0-53-generic x86_64 + predicateAnalysis
    - System - + > + valueAnalysis + - CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389436 kB + valueAnalysis
    - 2015-05-27 10:04:55 CEST +
      +
        +
      • + + -noout + +
      • +
      • + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -predicateAnalysis + +
      • +
      +
    - 2015-05-27 10:04:27 CEST +
      +
        +
      • + + -noout + +
      • +
      • + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -predicateAnalysis + +
      • +
      +
    +
    +
      +
        +
      • + + -noout + +
      • +
      • + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -valueAnalysis + +
      • +
      +
    +
    +
      +
        +
      • + + -noout + +
      • +
      • + + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -valueAnalysis + +
      • +
      +
    - mathsat - - smtinterpol +
    +
    +
    +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    - Properties - - sat +
    +
    +
    +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    - -
    status @@ -64101,9 +51096,13 @@ exports[`Render Summary for smt.diff.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "76 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "76px", } @@ -64111,6 +51110,17 @@ exports[`Render Summary for smt.diff.html 1`] = ` >
    cputime @@ -64134,9 +51144,13 @@ exports[`Render Summary for smt.diff.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "84 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "84px", } @@ -64144,6 +51158,17 @@ exports[`Render Summary for smt.diff.html 1`] = ` >
    walltime @@ -64167,19 +51192,36 @@ exports[`Render Summary for smt.diff.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "none", "boxSizing": "border-box", - "flex": "84 0 auto", + "flex": "68 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", - "width": "84px", + "width": "68px", } } >
    memory +
    + (MB)
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - status + -
    +
    +
    +
    +
    +
    - cputime -
    - (s) + -
    +
    +
    +
    +
    +
    +
    +
    - walltime -
    - (s) -
    + className="cell" + dangerouslySetInnerHTML={"4.30"} + title="avg: 2.15, max: 2.17, median: 2.15, min: 2.13, stdev: 0.0204" + /> +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    - memory + -
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    -
    -
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + > + - +
    + > + - +
    + > + - +
    -
    -
    -
    -
    -
    -
    -
    - all results - -
    -
    -

    - Generated by - - BenchExec (test) - -

    -
    -`; - -exports[`Render Summary for smt.table.html 1`] = ` -
    -

    - Benchmark Setup -

    -
    -
    - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + +
    - Tool - - - MathSAT5.3.5 - - SMTInterpol2.1-183-g4d3bb9f -
    - Limits - - - timelimit: 10 s, memlimit: 100 MB, CPU core limit: 1 -
    - Host - - - tortuga -
    - OS - - - Linux 3.13.0-53-generic x86_64 -
    - System - - - CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389436 kB -
    - Date of execution - - - 2015-05-27 10:04:55 CEST - - 2015-05-27 10:04:27 CEST -
    - Run set - - - mathsat - - smtinterpol -
    - Properties - - - sat +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    + + + +
    - -
    status @@ -65148,9 +52040,13 @@ exports[`Render Summary for smt.table.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "76 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "76px", } @@ -65158,6 +52054,17 @@ exports[`Render Summary for smt.table.html 1`] = ` >
    cputime @@ -65181,9 +52088,13 @@ exports[`Render Summary for smt.table.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "84 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "84px", } @@ -65191,6 +52102,17 @@ exports[`Render Summary for smt.table.html 1`] = ` >
    walltime @@ -65214,19 +52136,36 @@ exports[`Render Summary for smt.table.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "none", "boxSizing": "border-box", - "flex": "84 0 auto", + "flex": "68 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", - "width": "84px", + "width": "68px", } } >
    memory +
    + (MB)
    @@ -65344,6 +52287,7 @@ exports[`Render Summary for smt.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -65362,6 +52306,7 @@ exports[`Render Summary for smt.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -65371,7 +52316,7 @@ exports[`Render Summary for smt.table.html 1`] = ` >
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - status -
    -
    - cputime -
    - (s) + -
    -
    - walltime -
    - (s) + -
    -
    - memory + -
    -
    -
    -
    + > + - +
    + > + - +
    + > + - +
    - - -
    + dangerouslySetInnerHTML={0} + />
    + > + - +
    + > + - +
    @@ -65778,14 +52895,407 @@ exports[`Render Summary for smt.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", + "flex": "300 0 auto", + "minWidth": "300px", + "position": "relative", + "width": "300px", + } + } + > + all results + +
    +
    + local summary + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`Render Summary for nan_and_inf.html 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + - -
    + Tool + + + + CPAchecker + + 1.7-svn 28500M +
    + Limits + + + timelimit: 900 s, memlimit: 15000 MB, CPU core limit: 2 +
    - all results + Host + + apollon* +
    - local summary + OS -
    -
    -

    - Generated by - - BenchExec (test) - -

    -
    -`; - -exports[`Render Summary for task-def-files.table.html 1`] = ` -
    -
    -

    - Benchmark Setup -

    - - - - - - - - - - - - - - - - - - + draggable={false} + role="separator" + style={ + Object { + "background": "rgba(0, 0, 0, 0.1)", + "cursor": "col-resize", + "margin": "0px", + "padding": "0px", + } + } + /> - - + + draggable={false} + role="separator" + style={ + Object { + "background": "rgba(0, 0, 0, 0.1)", + "cursor": "col-resize", + "margin": "0px", + "padding": "0px", + } + } + /> - - + + draggable={false} + role="separator" + style={ + Object { + "background": "rgba(0, 0, 0, 0.1)", + "cursor": "col-resize", + "margin": "0px", + "padding": "0px", + } + } + /> - - + - - - - + draggable={false} + role="separator" + style={ + Object { + "background": "rgba(0, 0, 0, 0.1)", + "cursor": "col-resize", + "margin": "0px", + "padding": "0px", + } + } + /> - - -
    - Tool - - DummyTool -
    - Limits - - timelimit: -, memlimit: -, CPU core limit: - -
    - Host - - t460p + Linux 4.4.0-128-generic
    - OS - - Linux-5.0.0-37-generic-x86_64-with-Ubuntu-18.04-bionic - + - Linux-5.3.0-53-generic-x86_64-with-Ubuntu-18.04-bionic - -
    System - CPU: Intel Core i5-6440HQ CPU @ 2.60GHz, cores: 4, frequency: 3500 MHz, Turbo Boost: enabled; RAM: 33587 MB - - CPU: Intel Core i5-6440HQ CPU @ 2.60GHz, cores: 4, frequency: 3500 MHz, Turbo Boost: enabled; RAM: 33537 MB + CPU: Intel Xeon E3-1230 v5 @ 3.40 GHz, cores: 8, frequency: 3.8 GHz, Turbo Boost: disabled; RAM: 33553 MB
    +
    Date of execution - 2019-12-20 15:32:33 CET - - 2020-06-10 09:17:06 CEST + 2018-06-27 14:40:12 CEST
    +
    Run set - 0 - - 0 + Model-Based-Selection
    +
    Options -
      -
    • - - true - -
    • -
    -
    -
      -
    • - - true - -
    • -
    -
    - Properties - - test -
    -
    -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - DummyTool 2019-12-20 15:32:33 CET 0 - -
    -
    -
    -
    - - DummyTool 2020-06-10 09:17:06 CEST 0 - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    - cpuenergy -
    - (J) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    - cpuenergy -
    - (J) -
    -
    -
    -
    -
    -
    -
    +
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      +
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        + -heap 10000M + + +
      • -
        - - -
        -
      • -
        + -benchmark + + +
      • -
        -
        -
      • -
        + -configselection-heuristic + + +
      +
    + + + + + Properties + + + + unreach-call + + + + + + + + +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    + Aliasing +
    +
    +
    +
    +
    + Arrays +
    +
    +
    +
    +
    + Boolean +
    +
    +
    +
    +
    + Composite types +
    +
    +
    +
    +
    + Floats +
    +
    +
    +
    +
    + Loops +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    + + + + + all results + + + + + + local summary + + + + + + correct results + + + + + + correct true + + + + + + correct false + + + + + + incorrect results + + + + + + incorrect true + + + + + + incorrect false + + + + + +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`Render Summary for predicateAnalysis.table.html 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M + + + CPAchecker + + 1.4-svn 15986M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET + + 2015-03-03 18:15:20 CET +
    + Run set + + + predicateAnalysis + + predicateAnalysis +
    + Options + + +
      +
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        + -noout + + +
      • -
        - - -
        -
      • -
        + -setprop log.consoleLevel=WARNING + + +
      • -
        - - -
        -
      • -
        -
        + -predicateAnalysis + + +
      +
    +
    +
      +
        -
        -
        -
        +
      • -
        - - -
        -
      • -
        + -noout + + +
      • -
        - - -
        -
      • -
        + -setprop log.consoleLevel=WARNING + + +
      • -
        - - -
        -
      • + + -predicateAnalysis + + +
      +
    +
    + + + +
    +
    - - +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    + className="table-content" + > +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    -
    +
    + all results + +
    + local summary + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`Render Summary for predicateAnalysis-reverse.table.html 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15986M + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 18:15:20 CET + + 2015-03-03 16:13:02 CET +
    + Run set + + + predicateAnalysis + + predicateAnalysis +
    + Options + + +
      -
      -
      -
      -
      -
      -
      -
      -
      -
      - - -
      -
      -
      -
      - - -
      -
      -
      -
      - - -
      -
      -
      -
      - - -
      -
      -
      -
      -
      -
      -
      -
      - - -
      -
      -
      -
      - - -
      -
      -
      -
      - - -
      -
      -
      -
      - - -
      -
      -
      -
      +
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        + -noout + + +
      • -
        - - -
        -
      • -
        -
        + -setprop log.consoleLevel=WARNING + + +
      • -
        -
        -
        + -predicateAnalysis + +
      • +
      +
    +
    +
      +
        -
        - - -
        - -
        +
      • -
        - - -
        -
      • -
        + -noout + + +
      • -
        - - -
        -
      • -
        + -setprop log.consoleLevel=WARNING + + +
      • -
        - - -
        -
      • - - - - - - - -

        - Generated by - - BenchExec (test) - -

        - -`; - -exports[`Render Summary for test.2015-03-03_1613.diff.html 1`] = ` -
        -
        -

        - Benchmark Setup -

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + draggable={false} + role="separator" + style={ + Object { + "background": "rgba(0, 0, 0, 0.1)", + "cursor": "col-resize", + "margin": "0px", + "padding": "0px", + } + } + /> - - -
        - Tool - - - CPAchecker - - 1.4-svn 15944M -
        - Limits - - timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 -
        - Host - - tortuga -
        - OS - - Linux 3.13.0-45-generic x86_64 -
        - System - - CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB + + -predicateAnalysis + + + +
        - Date of execution - + - 2015-03-03 16:13:02 CET - -
        - Run set + - predicateAnalysis - - valueAnalysis -
        - Options - -
          -
        • - - -noout - -
        • -
        • - - -setprop log.consoleLevel=WARNING - -
        • -
        • - - -predicateAnalysis - -
        • -
        +
        +
        +
        +
        +
        +
        +
        +
        +
        + status +
        +
        +
        +
        +
        + cputime +
        + (s) +
        +
        +
        +
        +
        + walltime +
        + (s) +
        +
        +
        +
        +
        + memory +
        + (MB) +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        + - +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        + - +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        + - +
        +
        +
        +
        + - +
        +
        +
        +
        + - +
        +
        +
        +
        +
        +
        +
        +
        +
        -
          -
        • - - -noout - -
        • -
        • - - -setprop log.consoleLevel=WARNING - -
        • -
        • - - -valueAnalysis - -
        • -
        -
        -
        -
        -

        - Statistics -

        -
        -
        -
        -
        -
        -
        - -
        -
        -
        -
        -
        - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
        -
        -
        -
        - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
        -
        -
        -
        - - Click here to select columns - -
        -
        -
        - -
        -
        -
        - status -
        -
        -
        -
        -
        - cputime -
        - (s) -
        -
        -
        -
        -
        - walltime -
        - (s) -
        -
        -
        -
        -
        - memory -
        - (MB) -
        -
        -
        -
        - -
        -
        -
        - status -
        -
        -
        -
        -
        - cputime -
        - (s) -
        -
        -
        -
        - walltime -
        - (s) -
        -
        -
        -
        -
        - memory -
        - (MB) + > +
        +
        +
        +
        + status +
        +
        +
        +
        +
        + cputime +
        + (s) +
        +
        +
        +
        +
        + walltime +
        + (s) +
        +
        +
        +
        +
        + memory +
        + (MB) +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        + - +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        + - +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        +
        + - +
        +
        +
        +
        + - +
        +
        +
        +
        + - +
        +
        +
        +
        +
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        +
    + all results + +
    + local summary + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`Render Summary for rows-with-scores.html 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + +
    + Limits + + + timelimit: -, memlimit: -, CPU core limit: - +
    + Host + + + t460p +
    + OS + + + Linux-5.0.0-37-generic-x86_64-with-Ubuntu-18.04-bionic + + Linux-5.3.0-53-generic-x86_64-with-Ubuntu-18.04-bionic +
    + System + + + CPU: Intel Core i5-6440HQ CPU @ 2.60GHz, cores: 4, frequency: 3500 MHz, Turbo Boost: enabled; RAM: 33587 MB + + CPU: Intel Core i5-6440HQ CPU @ 2.60GHz, cores: 4, frequency: 3500 MHz, Turbo Boost: enabled; RAM: 33537 MB +
    + Date of execution + + + 2019-12-20 15:32:33 CET + + 2020-06-10 09:17:06 CEST +
    + Run set + + + 0 + + 0 +
    + Options + + +
      +
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        + true + + +
      +
    +
    +
      +
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        + + true + + +
      +
    +
    + Properties + + + test +
    + + + +
    +
    - - +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    + cpuenergy +
    + (J) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    + cpuenergy +
    + (J) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    -
    -
    -
    -
    +
    + all results + +
    + local summary + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    + score (6 tasks, max score: 6) + +

    Generated by @@ -70862,7 +64930,7 @@ exports[`Render Summary for test.2015-03-03_1613.diff.html 1`] = `

    `; -exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.all-columns.html 1`] = ` +exports[`Render Summary for simple-table-with-columns.table.html 1`] = `
    @@ -71325,6 +65393,14 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.all-c > @@ -71369,7 +65445,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.all-c role="table" style={ Object { - "minWidth": "150px", + "minWidth": "90px", } } > @@ -71383,7 +65459,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.all-c Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "150px", + "minWidth": "90px", } } > @@ -71393,9 +65469,13 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.all-c role="columnheader" style={ Object { + "borderLeft": "none", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "68 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "68px", } @@ -71403,42 +65483,20 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.all-c >
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) + status
    - walltime + CPU Time
    (s)
    @@ -71490,52 +65563,36 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.all-c role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "none", "boxSizing": "border-box", - "flex": "68 0 auto", + "flex": "60 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", - "width": "68px", + "width": "60px", } } >
    - memory -
    - (MB) -
    -
    -
    -
    -
    - exitcode + setup +
    + (s)
    @@ -71570,6 +65627,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.all-c role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -71587,24 +65645,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.all-c role="cell" style={ Object { - "boxSizing": "border-box", - "flex": "76 0 auto", - "minWidth": "30px", - "width": "76px", - } - } - > -
    -
    -
    -
    -
    -
    @@ -71662,7 +65686,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.all-c Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "150px", + "minWidth": "90px", } } > @@ -71671,6 +65695,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.all-c role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -71689,64 +65714,31 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.all-c role="cell" style={ Object { - "boxSizing": "border-box", - "flex": "76 0 auto", - "minWidth": "30px", - "width": "76px", - } - } - > -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    +
    +
    +
    @@ -71771,6 +65763,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.all-c role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -71788,24 +65781,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.all-c role="cell" style={ Object { - "boxSizing": "border-box", - "flex": "76 0 auto", - "minWidth": "30px", - "width": "76px", - } - } - > -
    -
    -
    -
    -
    -
    @@ -71863,7 +65822,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.all-c Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "150px", + "minWidth": "90px", } } > @@ -71872,6 +65831,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.all-c role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -71889,24 +65849,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.all-c role="cell" style={ Object { - "boxSizing": "border-box", - "flex": "76 0 auto", - "minWidth": "30px", - "width": "76px", - } - } - > -
    -
    -
    -
    -
    -
    @@ -71964,7 +65890,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.all-c Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "150px", + "minWidth": "90px", } } > @@ -71973,6 +65899,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.all-c role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -71990,24 +65917,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.all-c role="cell" style={ Object { - "boxSizing": "border-box", - "flex": "76 0 auto", - "minWidth": "30px", - "width": "76px", - } - } - > -
    -
    -
    -
    -
    -
    @@ -72065,7 +65958,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.all-c Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "150px", + "minWidth": "90px", } } > @@ -72074,6 +65967,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.all-c role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -72091,24 +65985,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.all-c role="cell" style={ Object { - "boxSizing": "border-box", - "flex": "76 0 auto", - "minWidth": "30px", - "width": "76px", - } - } - > -
    -
    -
    -
    -
    -
    @@ -72166,7 +66026,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.all-c Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "150px", + "minWidth": "90px", } } > @@ -72175,6 +66035,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.all-c role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -72192,24 +66053,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.all-c role="cell" style={ Object { - "boxSizing": "border-box", - "flex": "76 0 auto", - "minWidth": "30px", - "width": "76px", - } - } - > -
    -
    -
    -
    -
    -
    @@ -72267,7 +66094,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.all-c Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "150px", + "minWidth": "90px", } } > @@ -72276,6 +66103,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.all-c role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -72293,24 +66121,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.all-c role="cell" style={ Object { - "boxSizing": "border-box", - "flex": "76 0 auto", - "minWidth": "30px", - "width": "76px", - } - } - > -
    - - -
    -
    -
    -
    - - -
    -
    -
    @@ -72377,10 +66171,10 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.all-c style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -72437,10 +66231,10 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.all-c style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -72467,10 +66261,10 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.all-c style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -72497,10 +66291,10 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.all-c style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -72527,10 +66321,10 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.all-c style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -72557,10 +66351,10 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.all-c style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -72587,10 +66381,10 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.all-c style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -72626,7 +66420,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.all-c
    `; -exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.correct-only.html 1`] = ` +exports[`Render Summary for simple-table-with-links.table.html 1`] = `
    @@ -73089,6 +66883,14 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.corre > @@ -73133,7 +66935,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.corre role="table" style={ Object { - "minWidth": "120px", + "minWidth": "60px", } } > @@ -73147,7 +66949,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.corre Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "120px", + "minWidth": "60px", } } > @@ -73157,9 +66959,13 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.corre role="columnheader" style={ Object { + "borderLeft": "none", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "68 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "68px", } @@ -73167,42 +66973,20 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.corre >
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) + status
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory + cputime
    - (MB) + (s)
    @@ -73303,6 +67069,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.corre role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -73320,6 +67087,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.corre role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -73329,44 +67097,57 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.corre >
    +
    +
    + > + - +
    @@ -73377,7 +67158,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.corre Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "120px", + "minWidth": "60px", } } > @@ -73386,6 +67167,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.corre role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -73403,6 +67185,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.corre role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -73416,42 +67199,6 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.corre title="avg: 2.16, max: 2.23, median: 2.19, min: 2.06, stdev: 0.0730" />
    -
    -
    -
    -
    -
    -
    @@ -73469,6 +67216,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.corre role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -73486,6 +67234,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.corre role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -73499,42 +67248,6 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.corre title="avg: 2.14, max: 2.23, median: 2.14, min: 2.06, stdev: 0.0854" />
    -
    -
    -
    -
    -
    -
    @@ -73552,6 +67265,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.corre role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -73569,6 +67283,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.corre role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -73582,42 +67297,6 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.corre title="avg: 2.19, max: 2.19, median: 2.19, min: 2.19, stdev: 0.000" />
    -
    -
    -
    -
    -
    -
    @@ -73635,6 +67314,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.corre role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -73652,6 +67332,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.corre role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -73661,45 +67342,9 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.corre >
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    + dangerouslySetInnerHTML={"2.17"} + title="avg: 2.17, max: 2.17, median: 2.17, min: 2.17, stdev: 0.000" + />
    @@ -73718,6 +67363,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.corre role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -73735,6 +67381,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.corre role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -73744,45 +67391,9 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.corre >
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    + dangerouslySetInnerHTML={"2.17"} + title="avg: 2.17, max: 2.17, median: 2.17, min: 2.17, stdev: 0.000" + />
    @@ -73801,6 +67412,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.corre role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -73818,6 +67430,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.corre role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -73831,42 +67444,6 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.corre -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    @@ -73884,10 +67461,10 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.corre style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -73914,130 +67491,160 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.corre style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", - "position": "relative", - "width": "250px", - } - } - > - correct results - - - - - - correct true - - - - - - correct false - - - - - - incorrect results - - - - - + local summary + + + + + + correct results + + + + + + correct true + + + + + + correct false + + + + + + incorrect results + + + + + @@ -74064,10 +67671,10 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.corre style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -74103,7 +67710,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.corre
    `; -exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.custom-score.html 1`] = ` +exports[`Render Summary for simple-table-with-numberOfDigits.table.html 1`] = `
    @@ -74176,7 +67783,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.custo } /> - predicateAnalysis.0 + predicateAnalysis @@ -74484,7 +68091,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.custo } /> - - - Properties - - - - unreach-label - - @@ -74626,7 +68198,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.custo } /> @@ -74667,7 +68239,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.custo Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "150px", + "minWidth": "120px", } } > @@ -74677,9 +68249,13 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.custo role="columnheader" style={ Object { + "borderLeft": "none", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "68 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "68px", } @@ -74687,6 +68263,17 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.custo >
    status @@ -74708,9 +68295,13 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.custo role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "76 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "76px", } @@ -74718,6 +68309,17 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.custo >
    cputime @@ -74741,9 +68343,13 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.custo role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "84 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "84px", } @@ -74751,6 +68357,17 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.custo >
    walltime @@ -74774,52 +68391,34 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.custo role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "none", "boxSizing": "border-box", - "flex": "68 0 auto", + "flex": "92 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", - "width": "68px", + "width": "92px", } } >
    - memory -
    - (MB) -
    -
    -
    -
    -
    - score + memory
    @@ -74854,6 +68453,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.custo role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -74863,7 +68463,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.custo >
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    + - +
    +
    @@ -74955,6 +68626,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.custo role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -74964,7 +68636,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.custo >
    -
    -
    -
    @@ -75047,7 +68704,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.custo Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "150px", + "minWidth": "120px", } } > @@ -75056,6 +68713,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.custo role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -75065,7 +68723,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.custo >
    -
    -
    -
    @@ -75148,7 +68791,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.custo Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "150px", + "minWidth": "120px", } } > @@ -75157,6 +68800,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.custo role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -75174,6 +68818,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.custo role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -75192,6 +68837,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.custo role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -75201,26 +68847,8 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.custo >
    -
    -
    -
    @@ -75249,7 +68878,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.custo Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "150px", + "minWidth": "120px", } } > @@ -75258,6 +68887,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.custo role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -75275,6 +68905,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.custo role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -75293,6 +68924,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.custo role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -75302,26 +68934,8 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.custo >
    -
    -
    -
    @@ -75350,7 +68965,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.custo Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "150px", + "minWidth": "120px", } } > @@ -75359,6 +68974,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.custo role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -75376,6 +68992,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.custo role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -75394,6 +69011,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.custo role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -75403,26 +69021,8 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.custo >
    -
    -
    -
    @@ -75451,7 +69052,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.custo Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "150px", + "minWidth": "120px", } } > @@ -75460,6 +69061,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.custo role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -75477,6 +69079,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.custo role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -75495,6 +69098,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.custo role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -75513,28 +69117,11 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.custo role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", - "flex": "68 0 auto", - "minWidth": "30px", - "width": "68px", - } - } - > -
    - - -
    -
    -
    @@ -75561,10 +69148,10 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.custo style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -75591,10 +69178,40 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.custo style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", + "flex": "150 0 auto", "minWidth": "0px", "position": "relative", - "width": "250px", + "width": "150px", + } + } + > + local summary + + + + + @@ -75621,10 +69238,10 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.custo style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -75651,10 +69268,10 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.custo style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -75681,10 +69298,10 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.custo style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -75711,10 +69328,10 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.custo style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -75741,10 +69358,10 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.custo style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -75780,7 +69397,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.custo
    `; -exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.html 1`] = ` +exports[`Render Summary for simple-table-with-scaling.table.html 1`] = `
    @@ -75853,7 +69470,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.html } /> @@ -76260,7 +69885,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.html } />
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (ms) +
    +
    +
    +
    +
    + cputime-h +
    + (h) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (ns) +
    +
    +
    +
    +
    + walltime +
    + (Gs) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    + memory-GB +
    + (GB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    - status -
    + className="cell" + dangerouslySetInnerHTML={3} + /> +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    - cputime -
    - (s) -
    + className="cell" + dangerouslySetInnerHTML={"4290"} + title="avg: 2140, max: 2230, median: 2140, min: 2060, stdev: 85.4" + /> +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    - walltime -
    - (s) -
    -
    - memory -
    - (MB) -
    -
    -
    -
    @@ -76457,6 +71145,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.html role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -76466,7 +71155,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.html >
    -
    -
    - - -
    + dangerouslySetInnerHTML={"2200000000"} + title="avg: 2200000000, max: 2200000000, median: 2200000000, min: 2200000000, stdev: 0.00" + />
    - - -
    + dangerouslySetInnerHTML={".12803"} + title="avg: 0.12803, max: 0.12803, median: 0.12803, min: 0.12803, stdev: 0.00000" + />
    @@ -76622,6 +71308,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.html role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -76631,7 +71318,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.html >
    -
    -
    @@ -76779,7 +71462,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.html Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "120px", + "minWidth": "240px", } } > @@ -76788,6 +71471,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.html role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -76797,7 +71481,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.html >
    + > + - +
    +
    +
    +
    + - +
    + > + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    + > + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    + + + + + all results + + + + + + local summary + + + + + + correct results + + + + + + correct true + + + + + + correct false + + + + + + incorrect results + + + + + + incorrect true + + + + + + incorrect false + + + + + +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`Render Summary for smt.diff.html 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - + @@ -77492,7 +73195,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.html 1`] } /> @@ -77535,7 +73238,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.html 1`] } /> @@ -77621,7 +73324,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.html 1`] } /> @@ -77664,7 +73367,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.html 1`] } /> + @@ -77707,7 +73423,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.html 1`] } /> + @@ -77735,7 +73464,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.html 1`] } } > - Options + Properties @@ -77832,6 +73509,14 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.html 1`] > @@ -77849,7 +73534,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.html 1`] } /> + + +
    + Tool + + + MathSAT5.3.5 + + SMTInterpol2.1-183-g4d3bb9f +
    + Limits + + + timelimit: 10 s, memlimit: 100 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-53-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389436 kB +
    + Date of execution + + + 2015-05-27 10:04:55 CEST + + 2015-05-27 10:04:27 CEST +
    + Run set + + + mathsat + + smtinterpol +
    + Properties + + + sat +
    + + + +
    +
    +
    +
    +
    +
    + status +
    +
    + cputime +
    + (s) +
    +
    + walltime +
    + (s) +
    +
    + memory +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + status +
    +
    - - + cputime +
    + (s)
    +
    - - + walltime +
    + (s)
    +
    - - + memory
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - all results - -
    - local summary - -
    - correct results - -
    - correct true - -
    - correct false - -
    - incorrect results - -
    - incorrect true - +
    +
    + + +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    - incorrect false + all results `; -exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.html 1`] = ` +exports[`Render Summary for smt.table.html 1`] = `
    @@ -77442,7 +73139,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.html 1`] } />
    - - CPAchecker - - 1.4-svn 15944M + MathSAT5.3.5 + + SMTInterpol2.1-183-g4d3bb9f
    - timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 + timelimit: 10 s, memlimit: 100 MB, CPU core limit: 1
    - Linux 3.13.0-45-generic x86_64 + Linux 3.13.0-53-generic x86_64
    - CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389436 kB
    - 2015-03-03 16:13:02 CET + 2015-05-27 10:04:55 CEST + + 2015-05-27 10:04:27 CEST
    - valueAnalysis + mathsat + + smtinterpol
    -
      -
        -
      • - - -noout - -
      • -
      • - - -setprop log.consoleLevel=WARNING - -
      • -
      • - - -valueAnalysis - -
      • -
      -
    + sat
    status @@ -77931,9 +73631,13 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.html 1`] role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "76 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "76px", } @@ -77941,6 +73645,17 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.html 1`] >
    cputime @@ -77964,9 +73679,13 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.html 1`] role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "84 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "84px", } @@ -77974,6 +73693,17 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.html 1`] >
    walltime @@ -77997,21 +73727,34 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.html 1`] role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "none", "boxSizing": "border-box", - "flex": "68 0 auto", + "flex": "84 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", - "width": "68px", + "width": "84px", } } >
    memory -
    - (MB)
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    + className="cell" + dangerouslySetInnerHTML={".165"} + title="avg: 0.0412, max: 0.126, median: 0.0150, min: 0.00897, stdev: 0.0491" + />
    - - -
    + dangerouslySetInnerHTML={".185"} + title="avg: 0.0463, max: 0.128, median: 0.0234, min: 0.0100, stdev: 0.0484" + />
    - - -
    + dangerouslySetInnerHTML={"32505856"} + title="avg: 8126464.00, max: 19525632, median: 5048320, min: 2883584, stdev: 6648515.24" + />
    + > + - +
    + > + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + status +
    +
    - - + cputime +
    + (s)
    +
    - - + walltime +
    + (s)
    +
    - - + memory
    +
    +
    +
    - - -
    + dangerouslySetInnerHTML={"1.66"} + title="avg: 0.414, max: 0.769, median: 0.347, min: 0.193, stdev: 0.234" + />
    - - -
    + dangerouslySetInnerHTML={"1.69"} + title="avg: 0.423, max: 0.778, median: 0.358, min: 0.199, stdev: 0.233" + />
    - - -
    + dangerouslySetInnerHTML={"139300864"} + title="avg: 34825216.00, max: 46264320, median: 34607104, min: 23822336, stdev: 10927257.63" + />
    + > + - +
    - - -
    + dangerouslySetInnerHTML={"1.66"} + />
    - - -
    + dangerouslySetInnerHTML={"2.32"} + />
    @@ -78709,10 +74382,10 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.html 1`] style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -78761,6 +74434,66 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.html 1`] } />
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`Render Summary for task-def-files.table.html 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + - - - - - - - -
    - correct results + Tool -
    - correct true - + > + DummyTool +
    - correct false + Limits -
    - incorrect results - + > + timelimit: -, memlimit: -, CPU core limit: - +
    - incorrect true + Host -
    - incorrect false - + > + t460p +
    -
    -

    - Generated by - - BenchExec (test) - -

    -
    -`; - -exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.html 1`] = ` -
    -

    - Benchmark Setup -

    -
    -
    - - -
    - - + @@ -79066,7 +74694,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm } } > - Limits + System + @@ -79109,7 +74750,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm } } > - Host + Date of execution + @@ -79152,7 +74806,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm } } > - OS + Run set + @@ -79195,7 +74862,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm } } > - System + Options + @@ -79238,7 +74974,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm } } > - Date of execution + Properties @@ -79281,7 +75017,19 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm } } > - Run set + - - - - - - - - + + +
    - Tool + OS - - CPAchecker - - 1.4-svn 15944M + Linux-5.0.0-37-generic-x86_64-with-Ubuntu-18.04-bionic + + Linux-5.3.0-53-generic-x86_64-with-Ubuntu-18.04-bionic
    - timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 + CPU: Intel Core i5-6440HQ CPU @ 2.60GHz, cores: 4, frequency: 3500 MHz, Turbo Boost: enabled; RAM: 33587 MB + + CPU: Intel Core i5-6440HQ CPU @ 2.60GHz, cores: 4, frequency: 3500 MHz, Turbo Boost: enabled; RAM: 33537 MB
    - tortuga + 2019-12-20 15:32:33 CET + + 2020-06-10 09:17:06 CEST
    - Linux 3.13.0-45-generic x86_64 + 0 + + 0
    - CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
      +
        +
      • + + true + +
      • +
      +
    +
    +
      +
        +
      • + + true + +
      • +
      +
    - 2015-03-03 16:13:02 CET + test
    - valueAnalysis +
    +
    +
    +
    +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    + cpuenergy +
    + (J) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    - Options - -
      -
        -
      • - - -noout - -
      • -
      • - - -setprop log.consoleLevel=WARNING - -
      • -
      • - - -valueAnalysis - -
      • -
      -
    -
    - - - @@ -79479,7 +76334,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "120px", + "minWidth": "150px", } } > @@ -79489,9 +76344,13 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm role="columnheader" style={ Object { + "borderLeft": "none", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "68 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "68px", } @@ -79499,6 +76358,17 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm >
    status @@ -79520,9 +76390,13 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "76 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "76px", } @@ -79530,6 +76404,17 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm >
    cputime @@ -79553,9 +76438,13 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "84 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "84px", } @@ -79563,6 +76452,17 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm >
    walltime @@ -79586,9 +76486,13 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "68 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "68px", } @@ -79596,6 +76500,17 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm >
    memory @@ -79613,6 +76528,54 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm } />
    +
    +
    + cpuenergy +
    + (J) +
    +
    +
    @@ -79635,6 +76598,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -79644,7 +76608,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm >
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    + > + - +
    @@ -79709,7 +76799,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "120px", + "minWidth": "150px", } } > @@ -79718,6 +76808,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -79727,15 +76818,15 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm >
    - - -
    + dangerouslySetInnerHTML={1} + />
    - - -
    + dangerouslySetInnerHTML={".381"} + title="avg: 0.381, max: 0.381, median: 0.381, min: 0.381, stdev: 0.000" + /> +
    +
    +
    @@ -79800,6 +76914,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -79809,7 +76924,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm >
    +
    +
    +
    @@ -79874,7 +77011,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "120px", + "minWidth": "150px", } } > @@ -79883,6 +77020,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -79900,6 +77038,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -79918,6 +77057,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -79936,6 +77076,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -79949,6 +77090,25 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm -
    +
    +
    + - +
    +
    @@ -79966,6 +77126,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -79975,7 +77136,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm >
    +
    +
    +
    @@ -80040,7 +77223,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm Object { "display": "flex", "flex": "1 0 auto", - "minWidth": "120px", + "minWidth": "150px", } } > @@ -80049,6 +77232,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -80058,7 +77242,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm >
    - - -
    + dangerouslySetInnerHTML={".00694"} + title="avg: 0.00174, max: 0.00208, median: 0.00177, min: 0.00132, stdev: 0.000291" + />
    - - -
    + dangerouslySetInnerHTML={".0140 "} + title="avg: 0.00349, max: 0.00808, median: 0.00213, min: 0.00161, stdev: 0.00267" + />
    - - -
    + dangerouslySetInnerHTML={"1.00 "} + title="avg: 0.251, max: 0.254, median: 0.250, min: 0.250, stdev: 0.00177" + /> +
    +
    +
    @@ -80132,6 +77338,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -80149,6 +77356,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -80167,6 +77375,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -80185,6 +77394,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -80198,6 +77408,25 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm -
    +
    +
    + - +
    +
    @@ -80215,6 +77444,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -80224,7 +77454,7 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm >
    +
    +
    + - +
    +
    @@ -80298,10 +77550,10 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -80358,10 +77610,10 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -80388,10 +77640,10 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -80418,10 +77670,10 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -80448,10 +77700,10 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -80478,10 +77730,10 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -80508,10 +77760,10 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -80530,6 +77782,36 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm } />
    + score (6 tasks, max score: 6) + +
    @@ -80547,27 +77829,88 @@ exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.htm
    `; -exports[`Render Summary for test.2015-03-03_1613.table.html 1`] = ` +exports[`Render Summary for test.2015-03-03_1613.diff.html 1`] = `
    +

    + Benchmark Setup +

    -

    - Benchmark Setup -

    - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + +
    + + + + - - + - - + - - + - - + - - + - - + - - - - + draggable={false} + role="separator" + style={ + Object { + "background": "rgba(0, 0, 0, 0.1)", + "cursor": "col-resize", + "margin": "0px", + "padding": "0px", + } + } + /> - -
    Tool +
    +
    Limits + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1
    +
    Host + tortuga
    +
    OS + Linux 3.13.0-45-generic x86_64
    +
    System + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB
    +
    Date of execution + 2015-03-03 16:13:02 CET
    +
    Run set - predicateAnalysis - - valueAnalysis -
    - Options - -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -predicateAnalysis - -
    • -
    + predicateAnalysis
    -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -valueAnalysis - -
    • -
    + valueAnalysis
    - -
    -

    - Statistics -

    -
    -
    -
    -
    +
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    +
    + +
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      - - -
      -
      -
      -
      - - -
      -
      -
      -
      - - -
      -
      -
      -
      +
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        + -noout + + +
      • -
        -
        -
        + -setprop log.consoleLevel=WARNING + +
      • +
      • -
        -
        -
      • -
        + -predicateAnalysis + + +
      +
    +
    +
      +
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        + -noout + + +
      • -
        - - -
        -
      • -
        + -setprop log.consoleLevel=WARNING + + +
      • -
        - - -
        -
      • -
        -
        + -valueAnalysis + + +
      +
    +
    + + + +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    - - +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    - - +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    -
    -
    -
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +

    Generated by @@ -82857,27 +80338,88 @@ exports[`Render Summary for test.2015-03-03_1613.table.html 1`] = `

    `; -exports[`Render Summary for test.2015-03-03_1613-common.diff.html 1`] = ` +exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.all-columns.html 1`] = `
    +

    + Benchmark Setup +

    -

    - Benchmark Setup -

    - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + +
    + + + + - - + - - + - - + - - - + draggable={false} + role="separator" + style={ + Object { + "background": "rgba(0, 0, 0, 0.1)", + "cursor": "col-resize", + "margin": "0px", + "padding": "0px", + } + } + /> - - - - - + draggable={false} + role="separator" + style={ + Object { + "background": "rgba(0, 0, 0, 0.1)", + "cursor": "col-resize", + "margin": "0px", + "padding": "0px", + } + } + /> - - - - -
    Tool +
    +
    Limits + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1
    +
    Host + tortuga
    +
    OS - Linux 3.13.0-45-generic x86_64 -
    - System - - CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB + Linux 3.13.0-45-generic x86_64
    - Date of execution - + - 2015-03-03 16:13:02 CET - -
    - Run set + System - predicateAnalysis - - valueAnalysis + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB
    - Options - + -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -predicateAnalysis - -
    • -
    - + Date of execution +
    + -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -valueAnalysis - -
    • -
    + 2015-03-03 16:13:02 CET
    - -
    -

    - Statistics -

    -
    -
    -
    -
    +
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    + Run set +
    + + predicateAnalysis +
    + Options + + +
      -
      -
      -
      -
      -
      -
      -
      -
      -
      - - -
      -
      -
      -
      - - -
      -
      -
      -
      - - -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      +
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        + -noout + + +
      • -
        - - -
        -
      • -
        + -setprop log.consoleLevel=WARNING + + +
      • -
        - - -
        -
      • -
        -
        + -predicateAnalysis + + +
      +
    +
    + + + +
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    - - +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    + exitcode +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    -
    -
    -
    -
    +
    + all results + +
    + local summary + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +

    Generated by @@ -84968,27 +82225,88 @@ exports[`Render Summary for test.2015-03-03_1613-common.diff.html 1`] = `

    `; -exports[`Render Summary for test.2015-03-03_1613-common.table.html 1`] = ` +exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.correct-only.html 1`] = `
    +

    + Benchmark Setup +

    -

    - Benchmark Setup -

    - - - - + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + +
    + + + + - - + - - + - - + - - + - - + - - + + draggable={false} + role="separator" + style={ + Object { + "background": "rgba(0, 0, 0, 0.1)", + "cursor": "col-resize", + "margin": "0px", + "padding": "0px", + } + } + /> - - + + draggable={false} + role="separator" + style={ + Object { + "background": "rgba(0, 0, 0, 0.1)", + "cursor": "col-resize", + "margin": "0px", + "padding": "0px", + } + } + /> - - -
    Tool +
    +
    Limits + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1
    +
    Host + tortuga
    +
    OS + Linux 3.13.0-45-generic x86_64
    +
    System + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB
    +
    Date of execution + 2015-03-03 16:13:02 CET
    +
    Run set - predicateAnalysis - - valueAnalysis + predicateAnalysis
    +
    Options -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -predicateAnalysis - -
    • -
    -
    -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -valueAnalysis - -
    • -
    -
    - -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    + -noout + + +
  • - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    + -setprop log.consoleLevel=WARNING + +
  • +
  • - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
  • -
    + -predicateAnalysis + + + + + +
    + + + +
    +
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) + > +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.custom-score.html 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + predicateAnalysis.0 +
    + Options + + +
      +
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        + -noout + + +
      • -
        - - -
        -
      • -
        + -setprop log.consoleLevel=WARNING + + +
      • -
        - - -
        -
      • -
        -
        + -predicateAnalysis + + +
      +
    +
    + Properties + + + unreach-label +
    + + + +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    - - +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    + score +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    -
    -
    -
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +

    Generated by @@ -87079,27 +85593,88 @@ exports[`Render Summary for test.2015-03-03_1613-common.table.html 1`] = `

    `; -exports[`Render Summary for test.2015-03-03_1613-correct-only.diff.html 1`] = ` +exports[`Render Summary for test.2015-03-03_1613.results.predicateAnalysis.html 1`] = `
    +

    + Benchmark Setup +

    -

    - Benchmark Setup -

    - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + +
    + + + + - - + - - + - - + - - - + draggable={false} + role="separator" + style={ + Object { + "background": "rgba(0, 0, 0, 0.1)", + "cursor": "col-resize", + "margin": "0px", + "padding": "0px", + } + } + /> - - - - - + draggable={false} + role="separator" + style={ + Object { + "background": "rgba(0, 0, 0, 0.1)", + "cursor": "col-resize", + "margin": "0px", + "padding": "0px", + } + } + /> - - + + draggable={false} + role="separator" + style={ + Object { + "background": "rgba(0, 0, 0, 0.1)", + "cursor": "col-resize", + "margin": "0px", + "padding": "0px", + } + } + /> - - -
    Tool +
    +
    Limits + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1
    +
    Host + tortuga
    +
    OS - Linux 3.13.0-45-generic x86_64 -
    - System - - CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB + Linux 3.13.0-45-generic x86_64
    - Date of execution - + - 2015-03-03 16:13:02 CET - -
    - Run set + System - predicateAnalysis - - valueAnalysis + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB
    - Options +
    + Date of execution -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -predicateAnalysis - -
    • -
    -
    -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -valueAnalysis - -
    • -
    -
    - -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    +
    + Run set + + + predicateAnalysis +
    + Options + + +
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      +
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        + -noout + + +
      • -
        - - -
        -
      • -
        + -setprop log.consoleLevel=WARNING + + +
      • -
        - - -
        -
      • -
        -
        + -predicateAnalysis + + +
      +
    +
    + + + +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    - - +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    +
    + all results + +
    + local summary + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.html 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + valueAnalysis +
    + Options + + +
      +
        -
        +
      • -
        -
        -
        + -noout + +
      • +
      • -
        - - -
        -
      • -
        + -setprop log.consoleLevel=WARNING + + +
      • -
        - - -
        -
      • + + -valueAnalysis + + +
      +
    +
    + + + +
    +
    - - +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    -
    +
    + all results + +
    + local summary + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`Render Summary for test.2015-03-03_1613.results.valueAnalysis.table.html 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + valueAnalysis +
    + Options + + +
      +
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        + -noout + + +
      • -
        - - -
        -
      • -
        + -setprop log.consoleLevel=WARNING + + +
      • -
        - - -
        -
      • + + -valueAnalysis + + +
      +
    +
    + + + +
    +
    - - +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    -
    -
    -
    -
    +
    + all results + +
    + local summary + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +

    Generated by @@ -89190,27 +90660,88 @@ exports[`Render Summary for test.2015-03-03_1613-correct-only.diff.html 1`] = `

    `; -exports[`Render Summary for test.2015-03-03_1613-correct-only.table.html 1`] = ` +exports[`Render Summary for test.2015-03-03_1613.table.html 1`] = `
    +

    + Benchmark Setup +

    -

    - Benchmark Setup -

    - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + +
    + + + + - - + - - + - - + - - + - - + - - - - - - + draggable={false} + role="separator" + style={ + Object { + "background": "rgba(0, 0, 0, 0.1)", + "cursor": "col-resize", + "margin": "0px", + "padding": "0px", + } + } + /> - - -
    Tool +
    +
    Limits + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1
    +
    Host + tortuga
    +
    OS + Linux 3.13.0-45-generic x86_64
    +
    System + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB
    +
    Date of execution + 2015-03-03 16:13:02 CET
    - Run set - - predicateAnalysis - + - valueAnalysis - -
    - Options + Run set -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -predicateAnalysis - -
    • -
    -
    -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -valueAnalysis - -
    • -
    -
    - -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    +
    + valueAnalysis +
    + Options + + +
      +
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        + -noout + + +
      • -
        -
        -
        + -setprop log.consoleLevel=WARNING + +
      • +
      • -
        -
        -
      • -
        + -predicateAnalysis + + +
      +
    +
    +
      +
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        + -noout + + +
      • -
        - - -
        -
      • -
        + -setprop log.consoleLevel=WARNING + + +
      • -
        - - -
        -
      • -
        -
        + -valueAnalysis + + +
      +
    +
    + + + +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    - - +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    - - +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    -
    -
    -
    -
    +
    + all results + +
    + local summary + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +

    Generated by @@ -91301,27 +93371,88 @@ exports[`Render Summary for test.2015-03-03_1613-correct-only.table.html 1`] = `

    `; -exports[`Render Summary for test.2015-03-03_1613-reverse.diff.html 1`] = ` +exports[`Render Summary for test.2015-03-03_1613-common.diff.html 1`] = `
    +

    + Benchmark Setup +

    -

    - Benchmark Setup -

    - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + +
    + + + + - - + + + + - - - - + - - + - - + - - + - - + + draggable={false} + role="separator" + style={ + Object { + "background": "rgba(0, 0, 0, 0.1)", + "cursor": "col-resize", + "margin": "0px", + "padding": "0px", + } + } + /> - - -
    Tool +
    +
    Limits + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    - timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 - -
    Host + tortuga
    +
    OS + Linux 3.13.0-45-generic x86_64
    +
    System + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB
    +
    Date of execution + 2015-03-03 16:13:02 CET
    +
    Run set + - valueAnalysis + predicateAnalysis - predicateAnalysis + valueAnalysis
    +
    Options -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -valueAnalysis - -
    • -
    -
    -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -predicateAnalysis - -
    • -
    -
    - -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    + -noout + + +
  • -
    -
    -
    + -setprop log.consoleLevel=WARNING + +
  • +
  • -
    -
    -
  • -
    + -predicateAnalysis + + + + + +
    +
      -
      -
      -
      -
      -
      -
      -
      -
      -
      - - -
      -
      -
      -
      - - -
      -
      -
      -
      - - -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      +
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        + -noout + + +
      • -
        - - -
        -
      • -
        + -setprop log.consoleLevel=WARNING + + +
      • -
        - - -
        -
      • -
        -
        + -valueAnalysis + + +
      +
    +
    + + + +
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    - - +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    +
    +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    - - +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    -
    -
    -
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +

    Generated by @@ -93412,27 +95880,88 @@ exports[`Render Summary for test.2015-03-03_1613-reverse.diff.html 1`] = `

    `; -exports[`Render Summary for test.2015-03-03_1613-reverse.table.html 1`] = ` +exports[`Render Summary for test.2015-03-03_1613-common.table.html 1`] = `
    +

    + Benchmark Setup +

    -

    - Benchmark Setup -

    - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + +
    + + + + - - + - - + - - + - - + - - + - - + + draggable={false} + role="separator" + style={ + Object { + "background": "rgba(0, 0, 0, 0.1)", + "cursor": "col-resize", + "margin": "0px", + "padding": "0px", + } + } + /> - - - - - -
    Tool +
    +
    Limits + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1
    +
    Host + tortuga
    +
    OS + Linux 3.13.0-45-generic x86_64
    +
    System + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB
    +
    Date of execution + 2015-03-03 16:13:02 CET
    +
    Run set - valueAnalysis - predicateAnalysis
    - Options - -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -valueAnalysis - -
    • -
    -
    -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -predicateAnalysis - -
    • -
    + valueAnalysis
    - -
    -

    - Statistics -

    -
    -
    -
    -
    +
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    +
    + +
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      +
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        + -noout + + +
      • -
        -
        -
        + -setprop log.consoleLevel=WARNING + +
      • +
      • -
        -
        -
      • -
        + -predicateAnalysis + + +
      +
    +
    +
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      +
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        + -noout + + +
      • -
        -
        -
        + -setprop log.consoleLevel=WARNING + +
      • +
      • -
        -
        -
      • -
        + -valueAnalysis + + +
      +
    +
    + + + +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    - - +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    +
    +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    - - +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    -
    -
    -
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +

    Generated by @@ -95722,27 +98389,88 @@ exports[`Render Summary for test.2015-03-03_1613-reverse.table.html 1`] = `

    `; -exports[`Render Summary for test-error.2015-03-03_1613.diff.html 1`] = ` +exports[`Render Summary for test.2015-03-03_1613-correct-only.diff.html 1`] = `
    +

    + Benchmark Setup +

    -

    - Benchmark Setup -

    - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + +
    + + + + - - + - - + - - + + + + - - - - + - - + - - - - - - -
    Tool +
    +
    Limits + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1
    +
    Host + tortuga
    +
    OS + + Linux 3.13.0-45-generic x86_64 +
    - Linux 3.13.0-45-generic x86_64 - -
    System + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB
    +
    Date of execution + 2015-03-03 16:13:02 CET
    +
    Run set + predicateAnalysis valueAnalysis
    - Options - -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -predicateAnalysis - -
    • -
    -
    -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -valueAnalysis - -
    • -
    -
    - -
    -

    - Statistics -

    -
    -
    -
    -
    +
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    +
    + +
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      - - -
      -
      -
      -
      - - -
      -
      -
      -
      - - -
      -
      -
      -
      +
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        + -noout + + +
      • -
        -
        -
        + -setprop log.consoleLevel=WARNING + +
      • +
      • -
        -
        -
      • -
        + -predicateAnalysis + + +
      +
    +
    +
      +
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        + -noout + + +
      • -
        - - -
        -
      • -
        + -setprop log.consoleLevel=WARNING + + +
      • -
        - - -
        -
      • -
        -
        + -valueAnalysis + + +
      +
    +
    + + + +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    - - +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    - - +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    -
    -
    -
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +

    Generated by @@ -97833,27 +100898,88 @@ exports[`Render Summary for test-error.2015-03-03_1613.diff.html 1`] = `

    `; -exports[`Render Summary for test-error.2015-03-03_1613.table.html 1`] = ` +exports[`Render Summary for test.2015-03-03_1613-correct-only.table.html 1`] = `
    +

    + Benchmark Setup +

    -

    - Benchmark Setup -

    - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + +
    + + + + - - + - - + - - + - - + - - - + draggable={false} + role="separator" + style={ + Object { + "background": "rgba(0, 0, 0, 0.1)", + "cursor": "col-resize", + "margin": "0px", + "padding": "0px", + } + } + /> - - - - - - + draggable={false} + role="separator" + style={ + Object { + "background": "rgba(0, 0, 0, 0.1)", + "cursor": "col-resize", + "margin": "0px", + "padding": "0px", + } + } + /> - -
    Tool +
    +
    Limits + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1
    +
    Host + tortuga
    +
    OS + Linux 3.13.0-45-generic x86_64
    +
    System - CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB -
    - Date of execution - - 2015-03-03 16:13:02 CET + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB
    - Run set - - predicateAnalysis - + - valueAnalysis - -
    - Options + Date of execution -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -predicateAnalysis - -
    • -
    -
    -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -valueAnalysis - -
    • -
    + 2015-03-03 16:13:02 CET
    - -
    -

    - Statistics -

    -
    -
    -
    -
    +
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    +
    + + predicateAnalysis + + valueAnalysis +
    + Options + + +
      +
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        + -noout + + +
      • -
        - - -
        -
      • -
        + -setprop log.consoleLevel=WARNING + + +
      • -
        - - -
        -
      • -
        -
        + -predicateAnalysis + + +
      +
    +
    +
      +
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        + -noout + + +
      • -
        -
        -
        + -setprop log.consoleLevel=WARNING + +
      • +
      • -
        -
        + + -valueAnalysis + +
      • +
      +
    +
    + + + +
    +
    + className="table-content" + > +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    - - +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`Render Summary for test.2015-03-03_1613-reverse.diff.html 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + valueAnalysis + + predicateAnalysis +
    + Options + + +
      +
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        + -noout + + +
      • -
        - - -
        -
      • -
        + -setprop log.consoleLevel=WARNING + + +
      • -
        - - -
        -
      • -
        -
        + -valueAnalysis + + +
      +
    +
    +
      +
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        + -noout + + +
      • -
        - - -
        -
      • -
        + -setprop log.consoleLevel=WARNING + + +
      • -
        - - -
        -
      • + + -predicateAnalysis + + +
      +
    +
    + + + +
    +
    - - +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    -
    -
    -
    -
    -
    -

    - Generated by - - BenchExec (test) - -

    -
    -`; - -exports[`Render Summary for union-table.diff.html 1`] = ` -
    -
    -

    - Benchmark Setup -

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - Tool - - - CPAchecker - - 1.4-svn 15944M -
    - Limits - - timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 -
    - Host - - tortuga -
    - OS - - Linux 3.13.0-45-generic x86_64 -
    - System - - CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB -
    - Date of execution - - 2015-03-03 16:13:02 CET -
    - Run set - - predicateAnalysis - - valueAnalysis -
    - Options - -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -predicateAnalysis - -
    • -
    -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -valueAnalysis - -
    • -
    -
    -
    -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) + > +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`Render Summary for test.2015-03-03_1613-reverse.table.html 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET +
    + Run set + + + valueAnalysis + + predicateAnalysis +
    + Options + + +
      +
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        + -noout + + +
      • -
        - - -
        -
      • -
        + -setprop log.consoleLevel=WARNING + + +
      • -
        - - -
        -
      • -
        -
        + -valueAnalysis + + +
      +
    +
    +
      +
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        + -noout + + +
      • -
        - - -
        -
      • -
        + -setprop log.consoleLevel=WARNING + + +
      • -
        - - -
        -
      • + + -predicateAnalysis + + +
      +
    +
    + + + +
    +
    - - +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    - - +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    -
    -
    -
    -
    +
    + all results + +
    + local summary + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +

    Generated by @@ -102254,27 +108627,88 @@ exports[`Render Summary for union-table.diff.html 1`] = `

    `; -exports[`Render Summary for union-table.table.html 1`] = ` +exports[`Render Summary for test-error.2015-03-03_1613.diff.html 1`] = `
    +

    + Benchmark Setup +

    -

    - Benchmark Setup -

    - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + +
    + + + + - - + - - + - - + - - + - - - + draggable={false} + role="separator" + style={ + Object { + "background": "rgba(0, 0, 0, 0.1)", + "cursor": "col-resize", + "margin": "0px", + "padding": "0px", + } + } + /> - - - - - - - + + draggable={false} + role="separator" + style={ + Object { + "background": "rgba(0, 0, 0, 0.1)", + "cursor": "col-resize", + "margin": "0px", + "padding": "0px", + } + } + /> - -
    Tool +
    +
    Limits + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1
    +
    Host + tortuga
    +
    OS + Linux 3.13.0-45-generic x86_64
    +
    System - CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB -
    - Date of execution - - 2015-03-03 16:13:02 CET -
    - Run set - - predicateAnalysis - - valueAnalysis + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB
    - Options +
    + Date of execution -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -predicateAnalysis - -
    • -
    -
    -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -valueAnalysis - -
    • -
    + 2015-03-03 16:13:02 CET
    - -
    -

    - Statistics -

    -
    -
    -
    -
    +
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    + Run set +
    + + predicateAnalysis + + valueAnalysis +
    + Options + + +
      +
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        + -noout + + +
      • -
        -
        -
        + -setprop log.consoleLevel=WARNING + +
      • +
      • -
        -
        -
      • -
        + -predicateAnalysis + + +
      +
    +
    +
      +
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        + -noout + + +
      • -
        - - -
        -
      • -
        + -setprop log.consoleLevel=WARNING + + +
      • -
        - - -
        -
      • -
        -
        + -valueAnalysis + + +
      +
    +
    + + + +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    - - +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    - - +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    -
    -
    -
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +

    Generated by @@ -104365,27 +111136,88 @@ exports[`Render Summary for union-table.table.html 1`] = `

    `; -exports[`Render Summary for union-table-duplicate-results.diff.html 1`] = ` +exports[`Render Summary for test-error.2015-03-03_1613.table.html 1`] = `
    +

    + Benchmark Setup +

    -

    - Benchmark Setup -

    - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + +
    + + + + - - + - - + - - + - - + - - + - - + - - + - - - -
    Tool + CPAchecker - [1.4-svn 15944M; 1.4-svn 15986M] + 1.4-svn 15944M
    +
    Limits + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1
    +
    Host + tortuga
    +
    OS + Linux 3.13.0-45-generic x86_64
    +
    System + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB
    +
    Date of execution + - [2015-03-03 16:13:02 CET; 2015-03-03 18:15:20 CET] + 2015-03-03 16:13:02 CET
    +
    Run set + predicateAnalysis valueAnalysis
    +
    Options -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -predicateAnalysis - -
    • -
    -
    -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -valueAnalysis - -
    • -
    -
    - -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker [2015-03-03 16:13:02 CET; 2015-03-03 18:15:20 CET] predicateAnalysis - -
    -
    -
    -
    - - CPAchecker [2015-03-03 16:13:02 CET; 2015-03-03 18:15:20 CET] valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    +
    +
      +
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        + -noout + + +
      • -
        -
        -
        + -setprop log.consoleLevel=WARNING + +
      • +
      • -
        -
        -
      • -
        + -predicateAnalysis + + +
      +
    +
    +
      +
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        + -noout + + +
      • -
        - - -
        -
      • -
        + -setprop log.consoleLevel=WARNING + + +
      • -
        - - -
        -
      • -
        -
        + -valueAnalysis + + +
      +
    +
    + + + +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    - - +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    - - +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    -
    -
    -
    -
    +
    + all results + +
    + local summary + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +

    Generated by @@ -106476,27 +113847,88 @@ exports[`Render Summary for union-table-duplicate-results.diff.html 1`] = `

    `; -exports[`Render Summary for union-table-duplicate-results.table.html 1`] = ` +exports[`Render Summary for union-table.diff.html 1`] = `
    +

    + Benchmark Setup +

    -

    - Benchmark Setup -

    - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + +
    + + + + - - + - - + - - + - - + - - + - - - - - - + draggable={false} + role="separator" + style={ + Object { + "background": "rgba(0, 0, 0, 0.1)", + "cursor": "col-resize", + "margin": "0px", + "padding": "0px", + } + } + /> - - -
    Tool + CPAchecker - [1.4-svn 15944M; 1.4-svn 15986M] + 1.4-svn 15944M
    +
    Limits + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1
    +
    Host + tortuga
    +
    OS + Linux 3.13.0-45-generic x86_64
    +
    System + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB
    +
    Date of execution + - [2015-03-03 16:13:02 CET; 2015-03-03 18:15:20 CET] + 2015-03-03 16:13:02 CET
    - Run set - - predicateAnalysis - + - valueAnalysis - -
    - Options + Run set -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -predicateAnalysis - -
    • -
    -
    -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -valueAnalysis - -
    • -
    -
    - -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker [2015-03-03 16:13:02 CET; 2015-03-03 18:15:20 CET] predicateAnalysis - -
    -
    -
    -
    - - CPAchecker [2015-03-03 16:13:02 CET; 2015-03-03 18:15:20 CET] valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    + predicateAnalysis + +
    + valueAnalysis +
    + Options + + +
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      - - -
      -
      -
      -
      - - -
      -
      -
      -
      - - -
      -
      -
      -
      +
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        + -noout + + +
      • -
        -
        -
        + -setprop log.consoleLevel=WARNING + +
      • +
      • -
        -
        -
      • -
        + -predicateAnalysis + + +
      +
    +
    +
      +
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        + -noout + + +
      • -
        - - -
        -
      • -
        + -setprop log.consoleLevel=WARNING + + +
      • -
        - - -
        -
      • -
        -
        + -valueAnalysis + + +
      +
    +
    + + + +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    - - +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    - - +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    -
    -
    -
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +

    Generated by @@ -108587,27 +116356,88 @@ exports[`Render Summary for union-table-duplicate-results.table.html 1`] = `

    `; -exports[`Render Summary for union-table-mixed.diff.html 1`] = ` +exports[`Render Summary for union-table.table.html 1`] = `
    +

    + Benchmark Setup +

    -

    - Benchmark Setup -

    - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + +
    + + + + - - - + - - + - - + - - + - - + - - - + - + draggable={false} + role="separator" + style={ + Object { + "background": "rgba(0, 0, 0, 0.1)", + "cursor": "col-resize", + "margin": "0px", + "padding": "0px", + } + } + /> - - - - - - - -
    Tool + 1.4-svn 15944M - - CPAchecker - - 1.4-svn 15986M -
    +
    Limits + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1
    +
    Host + tortuga
    +
    OS + Linux 3.13.0-45-generic x86_64
    +
    System + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB
    +
    Date of execution + 2015-03-03 16:13:02 CET - 2015-03-03 18:15:20 CET -
    +
    Run set - predicateAnalysis - - valueAnalysis - predicateAnalysis
    - Options - -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -predicateAnalysis - -
    • -
    -
    -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -valueAnalysis - -
    • -
    -
    -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -predicateAnalysis - -
    • -
    -
    - -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    +
    + Options + + +
      +
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        + -noout + + +
      • -
        -
        -
        + -setprop log.consoleLevel=WARNING + +
      • +
      • -
        -
        -
      • -
        + -predicateAnalysis + + +
      +
    +
    +
      +
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        + -noout + + +
      • -
        - - -
        -
      • -
        + -setprop log.consoleLevel=WARNING + + +
      • -
        - - -
        -
      • + + -valueAnalysis + + +
      +
    +
    + + + +
    +
    - - +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    +
    +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    - - +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`Render Summary for union-table-duplicate-results.diff.html 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + [1.4-svn 15944M; 1.4-svn 15986M] +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + [2015-03-03 16:13:02 CET; 2015-03-03 18:15:20 CET] +
    + Run set + + + predicateAnalysis + + valueAnalysis +
    + Options + + +
      +
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        + -noout + + +
      • -
        -
        -
        + -setprop log.consoleLevel=WARNING + +
      • +
      • -
        -
        -
        + -predicateAnalysis + +
      • +
      +
    +
    +
      +
        -
        +
      • -
        -
        -
        + -noout + +
      • +
      • -
        - - -
        -
      • -
        + -setprop log.consoleLevel=WARNING + + +
      • -
        - - -
        -
      • + + -valueAnalysis + + +
      +
    +
    + + + +
    +
    - - +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    +
    +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    - - +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`Render Summary for union-table-duplicate-results.table.html 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + [1.4-svn 15944M; 1.4-svn 15986M] +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + [2015-03-03 16:13:02 CET; 2015-03-03 18:15:20 CET] +
    + Run set + + + predicateAnalysis + + valueAnalysis +
    + Options + + +
      +
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        + -noout + + +
      • -
        - - -
        -
      • -
        + -setprop log.consoleLevel=WARNING + + +
      • -
        - - -
        -
      • -
        + -predicateAnalysis + + +
      +
    +
    +
      +
        -
        +
      • -
        -
        -
        + -noout + +
      • +
      • -
        - - -
        -
      • -
        + -setprop log.consoleLevel=WARNING + + +
      • -
        - - -
        -
      • + + -valueAnalysis + + +
      +
    +
    + + + +
    +
    - - +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    -
    -
    -
    -
    -
    -

    - Generated by - - BenchExec (test) - -

    -
    -`; - -exports[`Render Summary for union-table-mixed.table.html 1`] = ` -
    -
    -

    - Benchmark Setup -

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - Tool - - - CPAchecker - - 1.4-svn 15944M - - - CPAchecker - - 1.4-svn 15986M -
    - Limits - - timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 -
    - Host - - tortuga -
    - OS - - Linux 3.13.0-45-generic x86_64 -
    - System - - CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB -
    - Date of execution - - 2015-03-03 16:13:02 CET - - 2015-03-03 18:15:20 CET -
    - Run set - - predicateAnalysis - - valueAnalysis - - predicateAnalysis -
    - Options - -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -predicateAnalysis - -
    • -
    -
    -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -valueAnalysis - -
    • -
    -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -predicateAnalysis - -
    • -
    -
    -
    -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET predicateAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 16:13:02 CET valueAnalysis - -
    -
    -
    -
    - - CPAchecker 2015-03-03 18:15:20 CET predicateAnalysis - -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) + > +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`Render Summary for union-table-mixed.diff.html 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + 1.4-svn 15944M + + + CPAchecker + + 1.4-svn 15986M +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + 2015-03-03 16:13:02 CET + + 2015-03-03 18:15:20 CET +
    + Run set + + + predicateAnalysis + + valueAnalysis + + predicateAnalysis +
    + Options + + +
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      +
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        + -noout + + +
      • -
        -
        -
        + -setprop log.consoleLevel=WARNING + +
      • +
      • -
        -
        -
      • -
        + -predicateAnalysis + + +
      +
    +
    +
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      +
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        + -noout + + +
      • -
        + + -setprop log.consoleLevel=WARNING + +
      • +
      • -
        -
        -
        + -valueAnalysis + +
      • +
      +
    +
    +
      +
        +
      • -
        - - -
        - -
        + -noout + +
      • +
      • -
        - - -
        - -
        + -setprop log.consoleLevel=WARNING + +
      • +
      • + + -predicateAnalysis + +
      • +
      +
    +
    + + + +
    +
    +
    - - +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    +
    +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    - - +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    -
    -
    -
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +

    Generated by @@ -114730,27 +127361,88 @@ exports[`Render Summary for union-table-mixed.table.html 1`] = `

    `; -exports[`Render Summary for union-table-multiple-results.diff.html 1`] = ` +exports[`Render Summary for union-table-mixed.table.html 1`] = `
    +

    + Benchmark Setup +

    -

    - Benchmark Setup -

    - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + +
    + + + + + - - + - - + - - + - - + - - + - - - + draggable={false} + role="separator" + style={ + Object { + "background": "rgba(0, 0, 0, 0.1)", + "cursor": "col-resize", + "margin": "0px", + "padding": "0px", + } + } + /> - - + - - -
    Tool + CPAchecker - [1.4-svn 15944M; 1.4-svn 15986M] + 1.4-svn 15944M + + + CPAchecker + + 1.4-svn 15986M
    +
    Limits + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1
    +
    Host + tortuga
    +
    OS + Linux 3.13.0-45-generic x86_64
    +
    System + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB
    +
    Date of execution - [2015-03-03 16:13:02 CET; 2015-03-03 18:15:20 CET] -
    - Run set - - predicateAnalysis + 2015-03-03 16:13:02 CET - valueAnalysis + 2015-03-03 18:15:20 CET
    - Options +
    + Run set + -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -predicateAnalysis - -
    • -
    + predicateAnalysis
    -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -valueAnalysis - -
    • -
    -
    - -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker [2015-03-03 16:13:02 CET; 2015-03-03 18:15:20 CET] predicateAnalysis - -
    -
    -
    -
    - - CPAchecker [2015-03-03 16:13:02 CET; 2015-03-03 18:15:20 CET] valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    + valueAnalysis + +
    + predicateAnalysis +
    + Options + + +
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      -
      +
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        + -noout + + +
      • -
        - - -
        -
      • -
        + -setprop log.consoleLevel=WARNING + + +
      • -
        - - -
        -
      • -
        -
        + -predicateAnalysis + + +
      +
    +
    +
      +
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        + -noout + + +
      • -
        -
        -
        + -setprop log.consoleLevel=WARNING + +
      • +
      • -
        -
        -
      • -
        + -valueAnalysis + + +
      +
    +
    +
      +
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        + -noout + + +
      • -
        - - -
        -
      • -
        + -setprop log.consoleLevel=WARNING + + +
      • -
        - - -
        -
      • + + -predicateAnalysis + + +
      +
    +
    + + + +
    +
    - - +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    - - +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    - - +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    -
    -
    -
    -
    +
    + all results + +
    + local summary + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +

    Generated by @@ -116841,27 +131129,88 @@ exports[`Render Summary for union-table-multiple-results.diff.html 1`] = `

    `; -exports[`Render Summary for union-table-multiple-results.table.html 1`] = ` +exports[`Render Summary for union-table-multiple-results.diff.html 1`] = `
    +

    + Benchmark Setup +

    -

    - Benchmark Setup -

    - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + +
    + + + + - - + - - + - - + - - + - - + - - + - - - - + draggable={false} + role="separator" + style={ + Object { + "background": "rgba(0, 0, 0, 0.1)", + "cursor": "col-resize", + "margin": "0px", + "padding": "0px", + } + } + /> - - -
    Tool +
    +
    Limits + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1
    +
    Host + tortuga
    +
    OS + Linux 3.13.0-45-generic x86_64
    +
    System + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB
    +
    Date of execution + [2015-03-03 16:13:02 CET; 2015-03-03 18:15:20 CET]
    +
    Run set - predicateAnalysis - - valueAnalysis -
    - Options - -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -predicateAnalysis - -
    • -
    + predicateAnalysis
    -
      -
    • - - -noout - -
    • -
    • - - -setprop log.consoleLevel=WARNING - -
    • -
    • - - -valueAnalysis - -
    • -
    -
    - -
    -

    - Statistics -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    - - CPAchecker [2015-03-03 16:13:02 CET; 2015-03-03 18:15:20 CET] predicateAnalysis - -
    -
    -
    -
    - - CPAchecker [2015-03-03 16:13:02 CET; 2015-03-03 18:15:20 CET] valueAnalysis - -
    -
    -
    -
    -
    - - Click here to select columns - -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    - -
    -
    -
    - status -
    -
    -
    -
    -
    - cputime -
    - (s) -
    -
    -
    -
    -
    - walltime -
    - (s) -
    -
    -
    -
    -
    - memory -
    - (MB) -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    + valueAnalysis + +
    + Options + + +
      +
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        + -noout + + +
      • -
        -
        -
        + -setprop log.consoleLevel=WARNING + +
      • +
      • -
        -
        -
      • -
        + -predicateAnalysis + + +
      +
    +
    +
      +
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        + -noout + + +
      • -
        - - -
        -
      • -
        + -setprop log.consoleLevel=WARNING + + +
      • -
        - - -
        -
      • + + -valueAnalysis + + +
      +
    +
    + + + +
    +
    - - +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    - - +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +
    +
    +

    + Generated by + + BenchExec (test) + +

    +
    +`; + +exports[`Render Summary for union-table-multiple-results.table.html 1`] = ` +
    +

    + Benchmark Setup +

    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Tool + + + + CPAchecker + + [1.4-svn 15944M; 1.4-svn 15986M] +
    + Limits + + + timelimit: 10 s, memlimit: 3000 MB, CPU core limit: 1 +
    + Host + + + tortuga +
    + OS + + + Linux 3.13.0-45-generic x86_64 +
    + System + + + CPU: Intel Core i7-2600 CPU @ 3.40GHz, cores: 8, frequency: 3401 MHz; RAM: 16389384 kB +
    + Date of execution + + + [2015-03-03 16:13:02 CET; 2015-03-03 18:15:20 CET] +
    + Run set + + + predicateAnalysis + + valueAnalysis +
    + Options + + +
      +
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        + -noout + + +
      • -
        - - -
        -
      • -
        + -setprop log.consoleLevel=WARNING + + +
      • -
        - - -
        -
      • -
        -
        + -predicateAnalysis + + +
      +
    +
    +
      +
        -
        -
        -
        -
        -
        -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        - - -
        -
        -
        -
        + -noout + + +
      • -
        -
        -
        + -setprop log.consoleLevel=WARNING + +
      • +
      • -
        - - -
        -
      • + + -valueAnalysis + + +
      +
    +
    + + + +
    +
    - - +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    - - +
    +
    +
    +
    +
    + status +
    +
    +
    +
    +
    + cputime +
    + (s) +
    +
    +
    +
    +
    + walltime +
    + (s) +
    +
    +
    +
    +
    + memory +
    + (MB) +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    + - +
    +
    +
    +
    +
    -
    -
    -
    -
    +
    + all results + +
    + correct results + +
    + correct true + +
    + correct false + +
    + incorrect results + +
    + incorrect true + +
    + incorrect false + +

    Generated by @@ -119415,6 +136610,14 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` > @@ -119483,9 +136686,13 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "none", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "68 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "68px", } @@ -119493,6 +136700,17 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` >

    status @@ -119514,9 +136732,13 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "76 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "76px", } @@ -119524,6 +136746,17 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` >
    cputime @@ -119547,9 +136780,13 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "84 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "84px", } @@ -119557,6 +136794,17 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` >
    walltime @@ -119580,9 +136828,13 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "none", "boxSizing": "border-box", "flex": "68 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "68px", } @@ -119590,6 +136842,17 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` >
    memory @@ -119629,6 +136892,7 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -119646,6 +136910,7 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -119664,6 +136929,7 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -119682,6 +136948,7 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -119712,6 +136979,7 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -119729,6 +136997,7 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -119747,6 +137016,7 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -119765,6 +137035,7 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -119795,6 +137066,7 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -119812,6 +137084,7 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -119830,6 +137103,7 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -119848,6 +137122,7 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -119878,6 +137153,7 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -119895,6 +137171,7 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -119913,6 +137190,7 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -119931,6 +137209,7 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -119961,6 +137240,7 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -119978,6 +137258,7 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -119996,6 +137277,7 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -120014,6 +137296,7 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -120044,6 +137327,7 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -120061,6 +137345,7 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -120079,6 +137364,7 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -120097,6 +137383,7 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -120127,6 +137414,7 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -120144,6 +137432,7 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -120162,6 +137451,7 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -120180,6 +137470,7 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -120210,10 +137501,10 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -120240,10 +137531,10 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -120270,10 +137561,10 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -120300,10 +137591,10 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -120330,10 +137621,10 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -120360,10 +137651,10 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -120390,10 +137681,10 @@ exports[`Render Summary for union-table-predicateAnalysis.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -120892,6 +138183,14 @@ exports[`Render Summary for union-table-valueAnalysis.table.html 1`] = ` > @@ -120960,9 +138259,13 @@ exports[`Render Summary for union-table-valueAnalysis.table.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "none", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "68 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "68px", } @@ -120970,6 +138273,17 @@ exports[`Render Summary for union-table-valueAnalysis.table.html 1`] = ` >
    status @@ -120991,9 +138305,13 @@ exports[`Render Summary for union-table-valueAnalysis.table.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "76 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "76px", } @@ -121001,6 +138319,17 @@ exports[`Render Summary for union-table-valueAnalysis.table.html 1`] = ` >
    cputime @@ -121024,9 +138353,13 @@ exports[`Render Summary for union-table-valueAnalysis.table.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "1px solid grey", "boxSizing": "border-box", "flex": "84 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "84px", } @@ -121034,6 +138367,17 @@ exports[`Render Summary for union-table-valueAnalysis.table.html 1`] = ` >
    walltime @@ -121057,9 +138401,13 @@ exports[`Render Summary for union-table-valueAnalysis.table.html 1`] = ` role="columnheader" style={ Object { + "borderLeft": "1px solid grey", + "borderRight": "none", "boxSizing": "border-box", "flex": "68 0 auto", + "margin": 0, "minWidth": "30px", + "padding": 0, "position": "relative", "width": "68px", } @@ -121067,6 +138415,17 @@ exports[`Render Summary for union-table-valueAnalysis.table.html 1`] = ` >
    memory @@ -121106,6 +138465,7 @@ exports[`Render Summary for union-table-valueAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -121123,6 +138483,7 @@ exports[`Render Summary for union-table-valueAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -121141,6 +138502,7 @@ exports[`Render Summary for union-table-valueAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -121159,6 +138521,7 @@ exports[`Render Summary for union-table-valueAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -121189,6 +138552,7 @@ exports[`Render Summary for union-table-valueAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -121206,6 +138570,7 @@ exports[`Render Summary for union-table-valueAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -121224,6 +138589,7 @@ exports[`Render Summary for union-table-valueAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -121242,6 +138608,7 @@ exports[`Render Summary for union-table-valueAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -121272,6 +138639,7 @@ exports[`Render Summary for union-table-valueAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -121289,6 +138657,7 @@ exports[`Render Summary for union-table-valueAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -121307,6 +138676,7 @@ exports[`Render Summary for union-table-valueAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -121325,6 +138695,7 @@ exports[`Render Summary for union-table-valueAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -121355,6 +138726,7 @@ exports[`Render Summary for union-table-valueAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -121372,6 +138744,7 @@ exports[`Render Summary for union-table-valueAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -121390,6 +138763,7 @@ exports[`Render Summary for union-table-valueAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -121408,6 +138782,7 @@ exports[`Render Summary for union-table-valueAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -121438,6 +138813,7 @@ exports[`Render Summary for union-table-valueAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -121455,6 +138831,7 @@ exports[`Render Summary for union-table-valueAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -121473,6 +138850,7 @@ exports[`Render Summary for union-table-valueAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -121491,6 +138869,7 @@ exports[`Render Summary for union-table-valueAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -121521,6 +138900,7 @@ exports[`Render Summary for union-table-valueAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -121538,6 +138918,7 @@ exports[`Render Summary for union-table-valueAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -121556,6 +138937,7 @@ exports[`Render Summary for union-table-valueAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -121574,6 +138956,7 @@ exports[`Render Summary for union-table-valueAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "#EEEEEE", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -121604,6 +138987,7 @@ exports[`Render Summary for union-table-valueAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -121621,6 +139005,7 @@ exports[`Render Summary for union-table-valueAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "76 0 auto", "minWidth": "30px", @@ -121639,6 +139024,7 @@ exports[`Render Summary for union-table-valueAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "84 0 auto", "minWidth": "30px", @@ -121657,6 +139043,7 @@ exports[`Render Summary for union-table-valueAnalysis.table.html 1`] = ` role="cell" style={ Object { + "backgroundColor": "white", "boxSizing": "border-box", "flex": "68 0 auto", "minWidth": "30px", @@ -121687,10 +139074,10 @@ exports[`Render Summary for union-table-valueAnalysis.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -121717,10 +139104,10 @@ exports[`Render Summary for union-table-valueAnalysis.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -121747,10 +139134,10 @@ exports[`Render Summary for union-table-valueAnalysis.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -121777,10 +139164,10 @@ exports[`Render Summary for union-table-valueAnalysis.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -121807,10 +139194,10 @@ exports[`Render Summary for union-table-valueAnalysis.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -121837,10 +139224,10 @@ exports[`Render Summary for union-table-valueAnalysis.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > @@ -121867,10 +139254,10 @@ exports[`Render Summary for union-table-valueAnalysis.table.html 1`] = ` style={ Object { "boxSizing": "border-box", - "flex": "250 0 auto", - "minWidth": "0px", + "flex": "300 0 auto", + "minWidth": "300px", "position": "relative", - "width": "250px", + "width": "300px", } } > From 2c859710c07c4a7ace3c51757749d738bdcebcfb Mon Sep 17 00:00:00 2001 From: EshaanAgg <96648934+EshaanAgg@users.noreply.github.com> Date: Sat, 27 Jul 2024 11:05:10 +0530 Subject: [PATCH 09/15] revert changes to data.json and create production build --- .../react-table/build/main.min.css | 2 +- .../react-table/build/main.min.js | 2 +- .../react-table/build/vendors.min.js | 2 +- .../react-table/src/data/data.json | 1327 +++++++---------- 4 files changed, 504 insertions(+), 829 deletions(-) diff --git a/benchexec/tablegenerator/react-table/build/main.min.css b/benchexec/tablegenerator/react-table/build/main.min.css index 867bb8dc7..2b487b320 100644 --- a/benchexec/tablegenerator/react-table/build/main.min.css +++ b/benchexec/tablegenerator/react-table/build/main.min.css @@ -1 +1 @@ -body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;margin:0}code{font-family:source-code-pro,Menlo,Monaco,Consolas,Courier New,monospace}body{overflow-x:hidden}.App{font-family:Droid Sans,Liberation Sans,Ubuntu,Trebuchet MS,Tahoma,Arial,Verdana,sans-serif}.correct{color:green}.error{color:#f0f}.correct-unconfirmed,.unknown{color:#71bcff}.wrong{color:red}.link{color:#71bcff;text-decoration:underline}.btn,.link{cursor:pointer}.btn{background-size:300% 100%;box-shadow:0 4px 12px 0 rgba(113,188,255,.2);height:35px;margin:0 10px 9px 0;text-align:center;transition:all .4s ease-in-out}.btn:hover{background:#71bcff}.btn:disabled{cursor:default}.btn:disabled,.btn:disabled:hover{background:#a9a9a9}.btn-apply{background:#71bcff;box-shadow:0 4px 12px 0 rgba(113,188,255,.5);margin-left:100px}.btn-apply:hover{background:#fff}.selectColumns{background-color:#fff;cursor:pointer;font-weight:700}.selectColumns:hover{background-color:#ccc}.header__tool-infos{font-weight:700}.table{white-space:nowrap}.table .table-container{min-width:-webkit-fit-content!important;min-width:-moz-fit-content!important;min-width:fit-content!important}.table .table-content{overflow:auto}.table.sticky .td,.table.sticky .th{background:#fff}.table.sticky .header{position:-webkit-sticky;position:sticky;text-align:center;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}.table.sticky .body{position:relative;z-index:0}.table.sticky [data-sticky-td]{position:-webkit-sticky;position:sticky}.table.sticky [data-sticky-last-left-td]{border-right:1px solid #ccc}.table.sticky [data-sticky-first-right-td]{border-left:1px solid #ccc}.table .table-header .th.outer{background-color:#f7f7f7}.table .table-header .clickable{display:flex;justify-content:center}.table .table-header .clickable:hover{background-color:#ccc;cursor:pointer}.table .td,.table .th{overflow:hidden}.table .resizer{background-color:transparent!important;bottom:0;display:inline-block;position:absolute;right:0;top:0;-webkit-transform:translateX(50%);transform:translateX(50%);width:36px;z-index:2}.table .resizer.isResizing{background:red}.table .separator{background:#adadad!important;margin:0!important;max-width:2px;padding:0!important}.overview{background:#fff}.overview .filterBox{background-color:#fff;box-shadow:0 3px 6px 0 rgba(0,0,0,.15);display:flex;flex-direction:column;height:100vh;max-width:-webkit-max-content;max-width:max-content;min-width:-webkit-min-content;min-width:min-content;position:absolute;right:0;transition:all .5s ease-in-out;width:40vw;z-index:9998}.overview .filterBox .filter-card{-webkit-touch-callout:none;box-shadow:0 3px 6px 0 rgba(0,0,0,.15);margin-top:18px;-webkit-user-select:none;user-select:none;width:100%}.overview .filterBox .filter-card--container{margin-bottom:8px;overflow-y:scroll}.overview .filterBox .filter-card--body{display:flex;flex-direction:column;list-style:none;margin:10px 25px;text-align:left}.overview .filterBox .filter-card--body--list{list-style:none}.overview .filterBox .filter-card--body--empty-rows{margin-bottom:1em}.overview .filterBox .filter-card--body .task-id-filters{align-items:center;display:flex;flex-direction:column;justify-content:space-between}.overview .filterBox .filter-card--body .task-id-filters input{margin-bottom:15px}.overview .filterBox .filter-card--range-container{display:flex;justify-content:space-between}.overview .filterBox .filter-card--range-input-fields{grid-gap:1rem;display:grid}.overview .filterBox .filter-card--range-input-fields input{width:93%}.overview .filterBox .filter-card--range-input-fields .range-input-fields--min{grid-column-end:2;grid-column-start:1}.overview .filterBox .filter-card--range-input-fields .range-input-fields--max{grid-column-end:3;grid-column-start:2}.overview .filterBox .filter-card--header{align-items:center;background-color:#b8ddff;display:flex;min-height:35px;position:relative;width:100%}.overview .filterBox .filter-card--header .filter-selection{margin-left:25px}.overview .filterBox .filter-card--header .check-button{color:green;margin-left:15px}.overview .filterBox .filter-card--header .delete-button{cursor:pointer;position:absolute;right:12px}.overview .filterBox .filter-card--header .title{font-size:18px;margin:0 0 0 25px;padding:3px}.overview .filterBox--hidden{right:-100vw}.overview .filterBox--header{align-items:center;background-color:#88c7ff;display:flex;height:35px;padding:5px 20px}.overview .filterBox--header--icon{cursor:pointer;margin-right:15px}.overview .filterBox--header--reset{background-color:hsla(0,0%,100%,.5);border:none;cursor:auto;height:100%}.overview .filterBox--header--reset-icon{cursor:pointer;position:absolute;right:20px}.overview .filterBox--header--reset:disabled{background:none;border:none;color:#000;display:inline-block;font-weight:600}.overview .filterBox--header--reset:disabled .hide{display:none}.overview .filterBox--container{align-items:center;display:flex;flex-direction:column;margin-left:20px;margin-right:20px;text-align:center}.overview .filterBox--container h4{font-size:18px;margin-bottom:0;margin-top:2.5rem}.overview .filterBox--container .hidden{display:none!important}.overview .filterBox--container .filter-add-button{align-items:center;background-color:#71bcff;border-radius:28px;box-shadow:0 3px 6px 0 rgba(0,0,0,.15);color:#fff;cursor:pointer;display:flex;flex-direction:row;justify-content:center;min-height:23px;min-width:23px;padding:5px;transition:all .5s ease-in-out}.overview .menu{align-items:flex-start;background:#71bcff;display:flex;font-weight:700;padding:10px 10px 0;width:calc(100% - 20px);z-index:100}.overview .menu .menu-item{background:hsla(0,0%,100%,.5);border-radius:8px 8px 0 0;color:#000;font-size:14px;height:17px;margin-right:1px;padding:8px 13px;text-decoration:none;white-space:nowrap}.overview .menu .menu-item.selected{background:#fff}.overview .route-container{max-height:calc(100vh - 43px);overflow:auto}.overview button{cursor:pointer}.overview button:disabled{display:none}.overview button.reset{background:hsla(0,0%,100%,.5);border:none;border-radius:0 0 8px 8px;color:#000;display:block;font-size:12px;padding:5px;position:fixed;right:10px;top:0}.overview button.reset .filter-icon{margin-left:10px;margin-right:5px}.overview button.reset .highlight{font-weight:700}.overview button.reset:disabled{cursor:auto}.overview button.reset:disabled .hide{visibility:hidden}#summary{padding-top:30px;text-align:center}#summary #benchmark_setup{margin:40px 0;overflow-x:scroll;width:100%}#summary #benchmark_setup table{border-collapse:collapse;width:100%}#summary #benchmark_setup table td,#summary #benchmark_setup table th{border:1px solid #ddd;padding:8px}#summary #benchmark_setup table .options ul{margin:0;padding:0 0 0 17px}#summary #benchmark_setup table .options li{font-size:9pt;list-style:none;text-align:left}#summary #benchmark_setup table .benchmark,#summary #benchmark_setup table th{font-weight:700}#summary #benchmark_setup table tr:nth-child(2n){background-color:#eee}#summary #benchmark_setup table tr:hover{background-color:#ddd}#summary #benchmark_setup table th{padding-bottom:8px;padding-top:8px;text-align:left;width:14vw}#summary #statistics #statistics-placeholder{background-color:#f7f7f7;border-bottom:1px solid #adadad;border-top:1px solid #adadad;padding:1em}#summary #statistics #statistics-table>.table .table-content .td{padding:8px 5px}#summary #statistics #statistics-table>.table .table-content .table-header .tr:nth-of-type(2){box-shadow:0 2px 15px 0 rgba(0,0,0,.15);position:relative;z-index:10}#summary #statistics #statistics-table>.table .table-content .table-header .tr .th{padding:5px}#summary #statistics #statistics-table>.table .table-content .table-header .tr .th:not(:first-of-type){border-right:1px solid rgba(0,0,0,.05)}#summary #statistics #statistics-table>.table .table-content .table-header .tr .th.outer{text-overflow:ellipsis}#summary #statistics #statistics-table>.table .table-content .table-header .tr .th .header-data{height:100%}#summary #statistics #statistics-table>.table .table-content .table-header .tr .th .selectColumns{display:block;overflow:hidden;text-overflow:ellipsis}#summary #statistics #statistics-table>.table .table-content .table-body .td .cell{padding:0;text-align:right}#summary #statistics #statistics-table>.table .table-content .table-body .row-title{font-weight:700;overflow:hidden;text-align:left;text-overflow:ellipsis}#summary #statistics #statistics-table>.table .table-content .table-body .tr{border-bottom:1px solid #adadad}#summary p{margin-top:40px}.main-table .table{display:flex;flex-direction:column;height:calc(100vh - 43px)}.main-table .table a{display:block;text-decoration:none}.main-table .table a:hover{background-color:#ccc}.main-table .table a:focus{outline:1px dotted red}.main-table .table .tr .td:first-of-type,.main-table .table .tr .th:first-of-type{border-right:1px solid #ccc}.main-table .table .fixed-task-header{justify-content:space-around;margin:auto;width:33%}.main-table .table .fixed-task-header input{width:100%}.main-table .table .table-content{flex:auto 1;overflow-y:scroll}.main-table .table .table-content .td{border-right:1px solid rgba(0,0,0,.02)}.main-table .table .table-content .td.reg-column{align-items:center;display:flex;justify-content:flex-end}.main-table .table .table-content .td.reg-column a{width:100%}.main-table .table .table-content .td.reg-column div{padding:5px 3px}.main-table .table .table-content .table-header{position:-webkit-sticky;position:sticky;top:0;z-index:3}.main-table .table .table-content .table-header>.tr:first-of-type{border-bottom:1px solid #f2f2f2}.main-table .table .table-content .table-header .shadow-container{box-shadow:0 2px 15px 0 rgba(0,0,0,.15);position:relative;z-index:10}.main-table .table .table-content .table-header .shadow-container .th:not(:first-of-type){border-right:1px solid rgba(0,0,0,.05)}.main-table .table .table-content .table-header .tr.filter{border-bottom:1px solid rgba(0,0,0,.05)}.main-table .table .table-content .th.header{position:relative}.main-table .table .table-content .th.header:last-child{overflow:hidden}.main-table .table .table-content .th.header.fixed-task,.main-table .table .table-content .th.header.reg-column{font-weight:400}.main-table .table .table-content .th.header:not(.separator):not(.filter)>*{overflow:hidden;padding:5px;text-overflow:ellipsis}.main-table .table .table-content .th.header .header-sort-container{height:calc(100% - 10px)}.main-table .table .table-content .th.header .header-sort-container.sorted-asc{box-shadow:inset 0 3px 0 0 rgba(0,0,0,.6)}.main-table .table .table-content .th.header .header-sort-container.sorted-desc{box-shadow:inset 0 -3px 0 0 rgba(0,0,0,.6)}.main-table .table .table-content .th.header.filter{padding:5px}.main-table .table .table-content .th.header.filter .filter-field{background:#fff;border:1px solid rgba(0,0,0,.1);border-radius:3px;font-size:inherit;padding:5px 7px;text-align:right;width:100%}.main-table .table .table-content .th.header.filter .filter-field *{text-align:left}.main-table .table .table-content .table-body span{text-align:center}.main-table .table .table-content .table-body .tr{border-bottom:1px solid #f2f2f2}.main-table .table .table-content .table-body .tr:hover .td{background:#f2f2f2}.main-table .table .table-content .table-body .row_id:not(:first-child){border-left:1px solid #000;color:#484848;font-size:9pt;height:100%;margin-left:5px;padding-left:5px}.main-table .table .table-content .table-body .td{padding:1px;text-align:right}.main-table .table .table-content .table-body .td>a{margin-left:1ex;padding:5px 3px}.main-table .table .table-content .table-body .row__name--cellLink{color:#000}.main-table .table .pagination{align-items:stretch;align-items:center;background:#fff;border-top:2px solid rgba(0,0,0,.1);bottom:0;box-shadow:0 0 15px 0 rgba(0,0,0,.1);display:flex;flex-wrap:wrap;justify-content:space-between;padding:3px;position:-webkit-sticky;position:sticky;z-index:99;z-index:1}.main-table .table .pagination .pagination-container{align-items:center;display:flex;height:100%;justify-content:space-around}.main-table .table .pagination .pagination-container#pagination-next,.main-table .table .pagination .pagination-container#pagination-previous{flex:1 1}.main-table .table .pagination .pagination-container#pagination-next .pagination-element,.main-table .table .pagination .pagination-container#pagination-previous .pagination-element{align-items:center;display:flex;height:100%;justify-content:center;width:100%}.main-table .table .pagination .pagination-container#pagination-center{display:flex;flex:1.5 1;flex-direction:row;flex-wrap:wrap;justify-content:space-around}.main-table .table .pagination .pagination-container#pagination-center input,.main-table .table .pagination .pagination-container#pagination-center select{background:#fff;border:1px solid rgba(0,0,0,.1)}.main-table .table .pagination .pagination-container#pagination-center .pagination-element{margin:3px 10px}.main-table .table .pagination .pagination-container .pagination-element{border-radius:3px;text-align:center}.main-table .table .pagination .pagination-container .pagination-element.button{background:rgba(0,0,0,.1);border-radius:3px;color:rgba(0,0,0,.6);cursor:pointer;outline-width:0;transition:all .1s ease}.main-table .table .pagination .pagination-container .pagination-element.button.disabled{cursor:default;opacity:.5}.main-table .table .pagination .pagination-container .pagination-element.button:not(.disabled):hover{background:rgba(0,0,0,.3);color:#fff}.main-table .table .pagination .pagination-container .pagination-element#goto-page-element{white-space:nowrap}.main-table .table .pagination .pagination-container .pagination-element#goto-page-element input{border-radius:3px;font-size:inherit;margin:0 5px;padding:5px 7px;text-align:center;width:55px}.main-table .table .pagination .pagination-container .pagination-element#set-page-element select{border-radius:3px;font-size:inherit;padding:5px 7px}.main-table .aborted{text-align:center}.main-table .aborted:after{content:"—"}.main-table input::-webkit-input-placeholder{color:#d3d3d3}.main-table input::placeholder{color:#d3d3d3}.quantilePlot{margin:20px}.quantilePlot .rv-discrete-color-legend{max-width:50vw;width:-webkit-max-content;width:max-content}.quantilePlot .rv-discrete-color-legend-item.clickable{padding:3px 10px;white-space:normal}.quantilePlot .rv-discrete-color-legend-item.clickable:hover{background:#ccc}.quantilePlot .settings-legend-container{justify-content:space-between}.quantilePlot .settings-container{flex-grow:0;min-width:0}.quantilePlot .settings-border-container,.quantilePlot .settings-subcontainer{justify-content:left;min-width:0}.quantilePlot .settings-subcontainer.flexible-width{flex:1 1 50%}.quantilePlot .setting.flexible-width{flex:1 0 60%;max-width:-webkit-max-content;max-width:max-content;min-width:0}.quantilePlot .setting.flexible-width .setting-select{min-width:120px}.scatterPlot{margin:20px;text-align:center}.scatterPlot__select select{margin:10px}.scatterPlot .middle-line .rv-xy-plot__axis__line{stroke:#71bcff}.scatterPlot__plot{margin:auto}.scatterPlot button{margin:10px}.scatterPlot .settings-container{margin-right:0}.scatterPlot .settings-subcontainer.flexible-width{flex:1 1 40vw;max-width:-webkit-max-content;max-width:max-content;min-width:0}.scatterPlot .settings-subcontainer.flexible-width .setting{flex:1 1 45%;max-width:-webkit-max-content;max-width:max-content;min-width:250px}.scatterPlot .settings-subcontainer.flexible-width .setting .setting-select{min-width:150px}.scatterPlot .settings-subcontainer.flexible-width .setting.icon{min-width:0}.scatterPlot .settings-subcontainer.flexible-width .setting.icon:hover{cursor:pointer}.settings-legend-container{display:flex}.settings-container{align-items:flex-start;display:flex;flex-grow:1;justify-content:center;margin-right:1em}.settings-border-container{border:1px solid rgba(0,0,0,.3);display:inline-flex;flex-wrap:wrap;justify-content:center;max-width:100%;padding:.5em}.settings-subcontainer{flex-wrap:wrap;justify-content:center}.setting,.settings-subcontainer{align-items:center;display:flex}.setting-label{padding:.4em 1em;white-space:nowrap}.setting-label.with-tooltip{text-decoration:underline}.setting-label.with-tooltip:hover{cursor:help}.setting-select{border:1px solid #c3c3c3;border-radius:3px;cursor:pointer;height:25px;margin:.4em 1em .4em 0;padding-left:10px}.setting-button{height:25px;margin:.4em 1em}.setting .disabled,.setting.disabled{color:rgba(0,0,0,.4)}.setting .disabled .setting-select,.setting.disabled .setting-select{cursor:not-allowed}.rv-discrete-color-legend{border:1px solid rgba(0,0,0,.3)}.rv-discrete-color-legend-item.clickable{white-space:nowrap}.plot__noresults{left:50%;position:absolute;top:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.info{margin:40px}.info-header{display:flex;justify-content:space-between;margin:40px 0}.info-header h1{margin:0}.info-header span{border:1px solid #71bcff;font-size:9pt;padding:5px}.ReactModal__Body--open{overflow:hidden;-webkit-user-select:none;user-select:none}.ReactModal__Overlay{z-index:900}.overlay{background:#fff;border:5px solid gray;border-radius:5px;bottom:40px;left:20px;overflow:scroll;position:fixed;right:20px;top:80px;-webkit-user-select:text;user-select:text}.overlay h1{margin-bottom:40px}.overlay td,.overlay th{background:#fff;color:#8e8d8d;cursor:pointer;text-align:center}.overlay td label,.overlay th label{cursor:pointer}.overlay td.checked,.overlay th.checked{color:#000}.overlay th:first-child{background:#fff}.overlay td:first-child{text-align:left;width:30%}.overlay input{display:none}.overlay__buttons{display:flex;justify-content:center;width:100%}.overlay__buttons .btn{margin-top:50px;width:20vw}.overlay th{border-bottom:1px solid #000}.overlay .closing{border-radius:4px;cursor:pointer;font-size:120%}.overlay .closing:hover{background:#000;color:#fff}.overlay.second-level .link-overlay-header-container{background-color:#fff}.overlay.second-level .link-overlay-text{margin-top:0}.overlay .link-overlay-file-link{background-color:inherit;border:none;color:blue;font:inherit;text-decoration:underline}.overlay .link-overlay-file-link:hover{cursor:pointer}.overlay .link-overlay-header-container{display:flex;flex-direction:row-reverse;height:30px;justify-content:space-between;left:0;padding:10px 10px 0;pointer-events:none;position:-webkit-sticky;position:sticky;top:0}.overlay .link-overlay-header-container>*{pointer-events:auto}.overlay .link-overlay-back-button:hover{cursor:pointer}.overlay .link-overlay-back-icon{margin-right:1em}.overlay .link-overlay-text{margin-top:-30px;padding:0 10px 10px}.rt-td{text-align:left}.ReactTable{border:none!important}.tooltip{border-bottom:1px dotted #000;display:inline-block;position:relative;z-index:10}.tooltip .tooltiptext{background-color:#555;border-radius:6px;color:#fff;left:50%;margin-left:-60px;opacity:0;padding:5px 0;position:absolute;text-align:center;top:100%;transition:opacity .3s;visibility:hidden;width:120px;z-index:999999}.tooltip .tooltiptext:after{border:5px solid transparent;border-bottom-color:#000;bottom:100%;content:" ";left:50%;margin-left:-5px;position:absolute}.tooltip:hover .tooltiptext{opacity:1;visibility:visible}@media only screen and (max-width:700px){.quantilePlot .settings-legend-container{flex-wrap:wrap;justify-content:center}.quantilePlot .setting,.quantilePlot .setting-select,.quantilePlot .settings-subcontainer{flex-grow:1}.quantilePlot .setting.flexible-width{max-width:90vw;min-width:18em}.quantilePlot .setting.flexible-width .setting-select{max-width:75vw}.quantilePlot .settings-container{margin-right:0}.quantilePlot .rv-discrete-color-legend{margin:1em 0;max-width:95vw}} \ No newline at end of file +body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;margin:0}code{font-family:source-code-pro,Menlo,Monaco,Consolas,Courier New,monospace}body{overflow-x:hidden}.App{font-family:Droid Sans,Liberation Sans,Ubuntu,Trebuchet MS,Tahoma,Arial,Verdana,sans-serif}.correct{color:green}.error{color:#f0f}.correct-unconfirmed,.unknown{color:#71bcff}.wrong{color:red}.link{color:#71bcff;text-decoration:underline}.btn,.link{cursor:pointer}.btn{background-size:300% 100%;box-shadow:0 4px 12px 0 rgba(113,188,255,.2);height:35px;margin:0 10px 9px 0;text-align:center;transition:all .4s ease-in-out}.btn:hover{background:#71bcff}.btn:disabled{cursor:default}.btn:disabled,.btn:disabled:hover{background:#a9a9a9}.btn-apply{background:#71bcff;box-shadow:0 4px 12px 0 rgba(113,188,255,.5);margin-left:100px}.btn-apply:hover{background:#fff}.selectColumns{background-color:#fff;cursor:pointer;font-weight:700}.selectColumns:hover{background-color:#ccc}.header__tool-infos{font-weight:700}.table{white-space:nowrap}.table .table-container{min-width:-webkit-fit-content!important;min-width:-moz-fit-content!important;min-width:fit-content!important}.table .table-content{overflow:auto}.table.sticky .td,.table.sticky .th{background:#fff}.table.sticky .header{position:-webkit-sticky;position:sticky;text-align:center;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}.table.sticky .body{position:relative;z-index:0}.table.sticky [data-sticky-td]{position:-webkit-sticky;position:sticky}.table.sticky [data-sticky-last-left-td]{border-right:1px solid #ccc}.table.sticky [data-sticky-first-right-td]{border-left:1px solid #ccc}.table .table-header .th.outer{background-color:#f7f7f7}.table .table-header .clickable{display:flex;justify-content:center}.table .table-header .clickable:hover{background-color:#ccc;cursor:pointer}.table .td,.table .th{overflow:hidden}.table .resizer{background-color:transparent!important;bottom:0;display:inline-block;position:absolute;right:0;top:0;-webkit-transform:translateX(50%);transform:translateX(50%);width:36px;z-index:2}.table .resizer.isResizing{background:red}.table .separator{background:#adadad!important;margin:0!important;max-width:2px;padding:0!important}.overview{background:#fff}.overview .filterBox{background-color:#fff;box-shadow:0 3px 6px 0 rgba(0,0,0,.15);display:flex;flex-direction:column;height:100vh;max-width:-webkit-max-content;max-width:max-content;min-width:-webkit-min-content;min-width:min-content;position:absolute;right:0;transition:all .5s ease-in-out;width:40vw;z-index:9998}.overview .filterBox .filter-card{-webkit-touch-callout:none;box-shadow:0 3px 6px 0 rgba(0,0,0,.15);margin-top:18px;-webkit-user-select:none;user-select:none;width:100%}.overview .filterBox .filter-card--container{margin-bottom:8px;overflow-y:scroll}.overview .filterBox .filter-card--body{display:flex;flex-direction:column;list-style:none;margin:10px 25px;text-align:left}.overview .filterBox .filter-card--body--list{list-style:none}.overview .filterBox .filter-card--body--empty-rows{margin-bottom:1em}.overview .filterBox .filter-card--body .task-id-filters{align-items:center;display:flex;flex-direction:column;justify-content:space-between}.overview .filterBox .filter-card--body .task-id-filters input{margin-bottom:15px}.overview .filterBox .filter-card--range-container{display:flex;justify-content:space-between}.overview .filterBox .filter-card--range-input-fields{grid-gap:1rem;display:grid}.overview .filterBox .filter-card--range-input-fields input{width:93%}.overview .filterBox .filter-card--range-input-fields .range-input-fields--min{grid-column-end:2;grid-column-start:1}.overview .filterBox .filter-card--range-input-fields .range-input-fields--max{grid-column-end:3;grid-column-start:2}.overview .filterBox .filter-card--header{align-items:center;background-color:#b8ddff;display:flex;min-height:35px;position:relative;width:100%}.overview .filterBox .filter-card--header .filter-selection{margin-left:25px}.overview .filterBox .filter-card--header .check-button{color:green;margin-left:15px}.overview .filterBox .filter-card--header .delete-button{cursor:pointer;position:absolute;right:12px}.overview .filterBox .filter-card--header .title{font-size:18px;margin:0 0 0 25px;padding:3px}.overview .filterBox--hidden{right:-100vw}.overview .filterBox--header{align-items:center;background-color:#88c7ff;display:flex;height:35px;padding:5px 20px}.overview .filterBox--header--icon{cursor:pointer;margin-right:15px}.overview .filterBox--header--reset{background-color:hsla(0,0%,100%,.5);border:none;cursor:auto;height:100%}.overview .filterBox--header--reset-icon{cursor:pointer;position:absolute;right:20px}.overview .filterBox--header--reset:disabled{background:none;border:none;color:#000;display:inline-block;font-weight:600}.overview .filterBox--header--reset:disabled .hide{display:none}.overview .filterBox--container{align-items:center;display:flex;flex-direction:column;margin-left:20px;margin-right:20px;text-align:center}.overview .filterBox--container h4{font-size:18px;margin-bottom:0;margin-top:2.5rem}.overview .filterBox--container .hidden{display:none!important}.overview .filterBox--container .filter-add-button{align-items:center;background-color:#71bcff;border-radius:28px;box-shadow:0 3px 6px 0 rgba(0,0,0,.15);color:#fff;cursor:pointer;display:flex;flex-direction:row;justify-content:center;min-height:23px;min-width:23px;padding:5px;transition:all .5s ease-in-out}.overview .menu{align-items:flex-start;background:#71bcff;display:flex;font-weight:700;padding:10px 10px 0;width:calc(100% - 20px);z-index:100}.overview .menu .menu-item{background:hsla(0,0%,100%,.5);border-radius:8px 8px 0 0;color:#000;font-size:14px;height:17px;margin-right:1px;padding:8px 13px;text-decoration:none;white-space:nowrap}.overview .menu .menu-item.selected{background:#fff}.overview .route-container{max-height:calc(100vh - 43px);overflow:auto}.overview button{cursor:pointer}.overview button:disabled{display:none}.overview button.reset{background:hsla(0,0%,100%,.5);border:none;border-radius:0 0 8px 8px;color:#000;display:block;font-size:12px;padding:5px;position:fixed;right:10px;top:0}.overview button.reset .filter-icon{margin-left:10px;margin-right:5px}.overview button.reset .highlight{font-weight:700}.overview button.reset:disabled{cursor:auto}.overview button.reset:disabled .hide{visibility:hidden}#summary{padding-top:30px;text-align:center}#summary #benchmark_setup{margin:40px 0;overflow-x:scroll;width:100%}#summary #benchmark_setup table{border-collapse:collapse;width:100%}#summary #benchmark_setup table td,#summary #benchmark_setup table th{border:1px solid #ddd;padding:8px}#summary #benchmark_setup table .options ul{margin:0;padding:0 0 0 17px}#summary #benchmark_setup table .options li{font-size:9pt;list-style:none;text-align:left}#summary #benchmark_setup table .benchmark,#summary #benchmark_setup table th{font-weight:700}#summary #benchmark_setup table th{background-color:#fff}#summary #benchmark_setup table th.sticky{left:0;position:-webkit-sticky!important;position:sticky!important;z-index:11}#summary #benchmark_setup table tr:nth-child(2n),#summary #benchmark_setup table tr:nth-child(2n) th{background-color:#eee}#summary #benchmark_setup table tr:hover{background-color:#ddd}#summary #benchmark_setup table th{padding-bottom:8px;padding-top:8px;text-align:left;width:14vw}#summary #statistics #statistics-placeholder{background-color:#f7f7f7;border-bottom:1px solid #adadad;border-top:1px solid #adadad;padding:1em}#summary #statistics #statistics-table>.table .table-content .td{padding:8px 5px}#summary #statistics #statistics-table>.table .table-content .table-header .tr:nth-of-type(2){box-shadow:0 2px 15px 0 rgba(0,0,0,.15);position:relative;z-index:10}#summary #statistics #statistics-table>.table .table-content .table-header .tr .th{padding:5px}#summary #statistics #statistics-table>.table .table-content .table-header .tr .th:not(:first-of-type){border-right:1px solid rgba(0,0,0,.05)}#summary #statistics #statistics-table>.table .table-content .table-header .tr .th.outer{text-overflow:ellipsis}#summary #statistics #statistics-table>.table .table-content .table-header .tr .th .header-data{height:100%}#summary #statistics #statistics-table>.table .table-content .table-header .tr .th .selectColumns{border:#555;overflow:hidden;text-overflow:ellipsis}#summary #statistics #statistics-table>.table .table-content .table-body .td .cell{padding:0;text-align:right}#summary #statistics #statistics-table>.table .table-content .table-body .row-title{font-weight:700;overflow:hidden;text-align:left;text-overflow:ellipsis}#summary #statistics #statistics-table>.table .table-content .table-body .tr{border-bottom:1px solid #adadad}#summary p{margin-top:40px}.main-table .table{display:flex;flex-direction:column;height:calc(100vh - 43px)}.main-table .table a{display:block;text-decoration:none}.main-table .table a:hover{background-color:#ccc}.main-table .table a:focus{outline:1px dotted red}.main-table .table .tr .td:first-of-type,.main-table .table .tr .th:first-of-type{border-right:1px solid #ccc}.main-table .table .fixed-task-header{justify-content:space-around;margin:auto;width:33%}.main-table .table .fixed-task-header input{width:100%}.main-table .table .table-content{flex:auto 1;overflow-y:scroll}.main-table .table .table-content .td{border-right:1px solid rgba(0,0,0,.02)}.main-table .table .table-content .td.reg-column{align-items:center;display:flex;justify-content:flex-end}.main-table .table .table-content .td.reg-column a{width:100%}.main-table .table .table-content .td.reg-column div{padding:5px 3px}.main-table .table .table-content .table-header{position:-webkit-sticky;position:sticky;top:0;z-index:3}.main-table .table .table-content .table-header>.tr:first-of-type{border-bottom:1px solid #f2f2f2}.main-table .table .table-content .table-header .shadow-container{box-shadow:0 2px 15px 0 rgba(0,0,0,.15);position:relative;z-index:10}.main-table .table .table-content .table-header .shadow-container .th:not(:first-of-type){border-right:1px solid rgba(0,0,0,.05)}.main-table .table .table-content .table-header .tr.filter{border-bottom:1px solid rgba(0,0,0,.05)}.main-table .table .table-content .th.header{position:relative}.main-table .table .table-content .th.header:last-child{overflow:hidden}.main-table .table .table-content .th.header.fixed-task,.main-table .table .table-content .th.header.reg-column{font-weight:400}.main-table .table .table-content .th.header:not(.separator):not(.filter)>*{overflow:hidden;padding:5px;text-overflow:ellipsis}.main-table .table .table-content .th.header .header-sort-container{height:calc(100% - 10px)}.main-table .table .table-content .th.header .header-sort-container.sorted-asc{box-shadow:inset 0 3px 0 0 rgba(0,0,0,.6)}.main-table .table .table-content .th.header .header-sort-container.sorted-desc{box-shadow:inset 0 -3px 0 0 rgba(0,0,0,.6)}.main-table .table .table-content .th.header.filter{padding:5px}.main-table .table .table-content .th.header.filter .filter-field{background:#fff;border:1px solid rgba(0,0,0,.1);border-radius:3px;font-size:inherit;padding:5px 7px;text-align:right;width:100%}.main-table .table .table-content .th.header.filter .filter-field *{text-align:left}.main-table .table .table-content .table-body span{text-align:center}.main-table .table .table-content .table-body .tr{border-bottom:1px solid #f2f2f2}.main-table .table .table-content .table-body .tr:hover .td{background:#f2f2f2}.main-table .table .table-content .table-body .row_id:not(:first-child){border-left:1px solid #000;color:#484848;font-size:9pt;height:100%;margin-left:5px;padding-left:5px}.main-table .table .table-content .table-body .td{padding:1px;text-align:right}.main-table .table .table-content .table-body .td>a{margin-left:1ex;padding:5px 3px}.main-table .table .table-content .table-body .row__name--cellLink{color:#000}.main-table .table .pagination{align-items:stretch;align-items:center;background:#fff;border-top:2px solid rgba(0,0,0,.1);bottom:0;box-shadow:0 0 15px 0 rgba(0,0,0,.1);display:flex;flex-wrap:wrap;justify-content:space-between;padding:3px;position:-webkit-sticky;position:sticky;z-index:99;z-index:1}.main-table .table .pagination .pagination-container{align-items:center;display:flex;height:100%;justify-content:space-around}.main-table .table .pagination .pagination-container#pagination-next,.main-table .table .pagination .pagination-container#pagination-previous{flex:1 1}.main-table .table .pagination .pagination-container#pagination-next .pagination-element,.main-table .table .pagination .pagination-container#pagination-previous .pagination-element{align-items:center;display:flex;height:100%;justify-content:center;width:100%}.main-table .table .pagination .pagination-container#pagination-center{display:flex;flex:1.5 1;flex-direction:row;flex-wrap:wrap;justify-content:space-around}.main-table .table .pagination .pagination-container#pagination-center input,.main-table .table .pagination .pagination-container#pagination-center select{background:#fff;border:1px solid rgba(0,0,0,.1)}.main-table .table .pagination .pagination-container#pagination-center .pagination-element{margin:3px 10px}.main-table .table .pagination .pagination-container .pagination-element{border-radius:3px;text-align:center}.main-table .table .pagination .pagination-container .pagination-element.button{background:rgba(0,0,0,.1);border-radius:3px;color:rgba(0,0,0,.6);cursor:pointer;outline-width:0;transition:all .1s ease}.main-table .table .pagination .pagination-container .pagination-element.button.disabled{cursor:default;opacity:.5}.main-table .table .pagination .pagination-container .pagination-element.button:not(.disabled):hover{background:rgba(0,0,0,.3);color:#fff}.main-table .table .pagination .pagination-container .pagination-element#goto-page-element{white-space:nowrap}.main-table .table .pagination .pagination-container .pagination-element#goto-page-element input{border-radius:3px;font-size:inherit;margin:0 5px;padding:5px 7px;text-align:center;width:55px}.main-table .table .pagination .pagination-container .pagination-element#set-page-element select{border-radius:3px;font-size:inherit;padding:5px 7px}.main-table .aborted{text-align:center}.main-table .aborted:after{content:"—"}.main-table input::-webkit-input-placeholder{color:#d3d3d3}.main-table input::placeholder{color:#d3d3d3}.quantilePlot{margin:20px}.quantilePlot .rv-discrete-color-legend{max-width:50vw;width:-webkit-max-content;width:max-content}.quantilePlot .rv-discrete-color-legend-item.clickable{padding:3px 10px;white-space:normal}.quantilePlot .rv-discrete-color-legend-item.clickable:hover{background:#ccc}.quantilePlot .settings-legend-container{justify-content:space-between}.quantilePlot .settings-container{flex-grow:0;min-width:0}.quantilePlot .settings-border-container,.quantilePlot .settings-subcontainer{justify-content:left;min-width:0}.quantilePlot .settings-subcontainer.flexible-width{flex:1 1 50%}.quantilePlot .setting.flexible-width{flex:1 0 60%;max-width:-webkit-max-content;max-width:max-content;min-width:0}.quantilePlot .setting.flexible-width .setting-select{min-width:120px}.scatterPlot{margin:20px;text-align:center}.scatterPlot__select select{margin:10px}.scatterPlot .middle-line .rv-xy-plot__axis__line{stroke:#71bcff}.scatterPlot__plot{margin:auto}.scatterPlot button{margin:10px}.scatterPlot .settings-container{margin-right:0}.scatterPlot .settings-subcontainer.flexible-width{flex:1 1 40vw;max-width:-webkit-max-content;max-width:max-content;min-width:0}.scatterPlot .settings-subcontainer.flexible-width .setting{flex:1 1 45%;max-width:-webkit-max-content;max-width:max-content;min-width:250px}.scatterPlot .settings-subcontainer.flexible-width .setting .setting-select{min-width:150px}.scatterPlot .settings-subcontainer.flexible-width .setting.icon{min-width:0}.scatterPlot .settings-subcontainer.flexible-width .setting.icon:hover{cursor:pointer}.settings-legend-container{display:flex}.settings-container{align-items:flex-start;display:flex;flex-grow:1;justify-content:center;margin-right:1em}.settings-border-container{border:1px solid rgba(0,0,0,.3);display:inline-flex;flex-wrap:wrap;justify-content:center;max-width:100%;padding:.5em}.settings-subcontainer{flex-wrap:wrap;justify-content:center}.setting,.settings-subcontainer{align-items:center;display:flex}.setting-label{padding:.4em 1em;white-space:nowrap}.setting-label.with-tooltip{text-decoration:underline}.setting-label.with-tooltip:hover{cursor:help}.setting-select{border:1px solid #c3c3c3;border-radius:3px;cursor:pointer;height:25px;margin:.4em 1em .4em 0;padding-left:10px}.setting-button{height:25px;margin:.4em 1em}.setting .disabled,.setting.disabled{color:rgba(0,0,0,.4)}.setting .disabled .setting-select,.setting.disabled .setting-select{cursor:not-allowed}.rv-discrete-color-legend{border:1px solid rgba(0,0,0,.3)}.rv-discrete-color-legend-item.clickable{white-space:nowrap}.plot__noresults{left:50%;position:absolute;top:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.info{margin:40px}.info-header{display:flex;justify-content:space-between;margin:40px 0}.info-header h1{margin:0}.info-header span{border:1px solid #71bcff;font-size:9pt;padding:5px}.ReactModal__Body--open{overflow:hidden;-webkit-user-select:none;user-select:none}.ReactModal__Overlay{z-index:900}.overlay{background:#fff;border:5px solid gray;border-radius:5px;bottom:40px;left:20px;overflow:scroll;position:fixed;right:20px;top:80px;-webkit-user-select:text;user-select:text}.overlay h1{margin-bottom:40px}.overlay td,.overlay th{background:#fff;color:#8e8d8d;cursor:pointer;text-align:center}.overlay td label,.overlay th label{cursor:pointer}.overlay td.checked,.overlay th.checked{color:#000}.overlay th:first-child{background:#fff}.overlay td:first-child{text-align:left;width:30%}.overlay input{display:none}.overlay__buttons{display:flex;justify-content:center;width:100%}.overlay__buttons .btn{margin-top:50px;width:20vw}.overlay th{border-bottom:1px solid #000}.overlay .closing{border-radius:4px;cursor:pointer;font-size:120%}.overlay .closing:hover{background:#000;color:#fff}.overlay.second-level .link-overlay-header-container{background-color:#fff}.overlay.second-level .link-overlay-text{margin-top:0}.overlay .link-overlay-file-link{background-color:inherit;border:none;color:blue;font:inherit;text-decoration:underline}.overlay .link-overlay-file-link:hover{cursor:pointer}.overlay .link-overlay-header-container{display:flex;flex-direction:row-reverse;height:30px;justify-content:space-between;left:0;padding:10px 10px 0;pointer-events:none;position:-webkit-sticky;position:sticky;top:0}.overlay .link-overlay-header-container>*{pointer-events:auto}.overlay .link-overlay-back-button:hover{cursor:pointer}.overlay .link-overlay-back-icon{margin-right:1em}.overlay .link-overlay-text{margin-top:-30px;padding:0 10px 10px}.rt-td{text-align:left}.ReactTable{border:none!important}.tooltip{border-bottom:1px dotted #000;display:inline-block;position:relative;z-index:10}.tooltip .tooltiptext{background-color:#555;border-radius:6px;color:#fff;left:50%;margin-left:-60px;opacity:0;padding:5px 0;position:absolute;text-align:center;top:100%;transition:opacity .3s;visibility:hidden;width:120px;z-index:999999}.tooltip .tooltiptext:after{border:5px solid transparent;border-bottom-color:#000;bottom:100%;content:" ";left:50%;margin-left:-5px;position:absolute}.tooltip:hover .tooltiptext{opacity:1;visibility:visible}@media only screen and (max-width:700px){.quantilePlot .settings-legend-container{flex-wrap:wrap;justify-content:center}.quantilePlot .setting,.quantilePlot .setting-select,.quantilePlot .settings-subcontainer{flex-grow:1}.quantilePlot .setting.flexible-width{max-width:90vw;min-width:18em}.quantilePlot .setting.flexible-width .setting-select{max-width:75vw}.quantilePlot .settings-container{margin-right:0}.quantilePlot .rv-discrete-color-legend{margin:1em 0;max-width:95vw}} \ No newline at end of file diff --git a/benchexec/tablegenerator/react-table/build/main.min.js b/benchexec/tablegenerator/react-table/build/main.min.js index b1bb85df9..83874950e 100644 --- a/benchexec/tablegenerator/react-table/build/main.min.js +++ b/benchexec/tablegenerator/react-table/build/main.min.js @@ -1 +1 @@ -!function(){var e={3244:function(e,t,n){"use strict";var i=n(7313),r=n(1168),s=n(1413),l=n(3433),a=n(5671),o=n(3144),c=n(136),u=n(7277),d=n(2135),h=n(8467),f=n(7762),g=n(9439),p=n(5110),m=n(8567),v=n(4925),b=n(4942),I=n(4506),C=n(2229),x=n.n(C),y=n(1969),Z=n(1875),j=n(6417),F=["ids"],A=function(e){(0,c.Z)(n,e);var t=(0,u.Z)(n);function n(e){var r;return(0,a.Z)(this,n),(r=t.call(this,e)).childRef=i.createRef(),r}return(0,o.Z)(n,[{key:"render",value:function(){var e=this;return(0,j.jsxs)(j.Fragment,{children:[(0,j.jsx)("span",{ref:this.childRef,children:this.props.children}),(0,j.jsx)("button",{title:"Copy to clipboard",style:{margin:"1ex"},onClick:function(){x()(e.childRef.current.innerText,{format:"text/plain"})},children:(0,j.jsx)(y.G,{icon:Z.kZ_})})]})}}]),n}(i.Component),N="##########",W=function(e){return"count"===e.type||"measure"===e.type},B=function(e){return void 0===e||null===e},G=function(e,t){return B(e)||B(e.raw)?t:e.raw},w=function(e,t){var n=G(e,"").toLowerCase(),i=G(t,"").toLowerCase();return""===n?1:""===i?-1:n>i?1:n1?t.slice(1).join("?"):void 0;if(void 0===n||0===n.length)return{};var i,r=n.split("&").map((function(e){return e.split("=")})),s={},l=(0,f.Z)(r);try{for(l.s();!(i=l.n()).done;){var a=(0,I.Z)(i.value),o=a[0],c=a.slice(1);s[decodeURI(o)]="filter"===o?c.join("="):decodeURI(c.join("="))}}catch(u){l.e(u)}finally{l.f()}return s},K=function(e){return Object.keys(e).filter((function(t){return void 0!==e[t]&&null!==e[t]})).map((function(t){return"".concat(t,"=").concat(e[t])})).join("&")},L=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=X(e),i=(0,s.Z)((0,s.Z)({},n),t),r=K(i),l=e.split("?")[0];return{newUrl:r.length>0?"".concat(l,"?").concat(r):l,queryString:"?".concat(r)}},O=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{callbacks:[],pushState:!1},n=L(window.location.href,e),i=n.newUrl;t.pushState&&window.history.pushState({},"",i);var r=t.callbacks;if(r&&r.length>0){var s,l=(0,f.Z)(r);try{for(l.s();!(s=l.n()).done;){var a=s.value;a()}}catch(o){l.e(o)}finally{l.f()}}window.location.href=i},U=function(e){for(var t=[],n=0,i=Object.entries(e);n2&&void 0!==arguments[2]&&arguments[2],i={};if(e.length>Math.floor(t.length/2)){var r,s=[],l=(0,f.Z)(t);try{for(l.s();!(r=l.n()).done;){var a=r.value;e.includes(a)||s.push(n?a.trim():a)}}catch(o){l.e(o)}finally{l.f()}i.notIn=s}else i.in=e.map((function(e){return n?e.trim():e}));return U(i)};function E(e,t,n,i,r){var s=[],l=e.statusValues,a=e.categoryValues,o=t[n][i],c=r[n][i],u=!!l,d=!!a;if(u){var h=D(l,o);s.push("status(".concat(h,")")),d||s.push("category(empty())")}if(d){u||s.push("status(empty())");var f=D(a,c,!0);s.push("category(".concat(f,")"))}return s.join(",")}function P(e){if("string"!==typeof e)throw new Error("Invalid value type");return e.replaceAll("(","%28").replaceAll(")","%29")}var M=function(e){if("string"!==typeof e)throw new Error("Invalid value type for converting to RegExp");return new RegExp(e.replace(/[.*+?^${}()|[\]\\]/g,"\\$&"),"ui")},J=function(e){if("string"!==typeof e)throw new Error("Invalid filter ID");var t=e.split("_");if(2===t.length)throw new Error("Invalid filter ID");return{tool:t[0],name:t.length>2?t.slice(1,-1).join("_"):void 0,column:t.length>2?t.at(-1):void 0}},_=function(e){var t,n=arguments.length>1&&void 0!==arguments[1]&&arguments[1],i={},r=0,s="",l=(0,f.Z)(e);try{for(l.s();!(t=l.n()).done;){var a=t.value;if("("!==a){if(")"!==a)0!==r||","!==a?s+=a:s="";else if(s+=a,0===--r){var o=s.indexOf("("),c=s.substr(0,o),u=s.substr(o+1,s.length-1-(o+1));i[c]=n?decodeURIComponent(u):u}}else s+=a,r++}}catch(d){l.e(d)}finally{l.f()}return i},z=function(e,t,n,i,r){return"values"===e?[{values:t.split(",").map(unescape)}]:"value"===e?[{value:unescape(t)}]:"status"===e||"category"===e?function(e,t,n,i,r){for(var s=_(t),a=[],o=0,c=Object.entries(s);o0?r.ids={values:u.map((function(e){return e||""}))}:d&&s.push({id:o,value:c})}}catch(K){l.e(K)}finally{l.f()}var Z=r.ids,j=(0,v.Z)(r,F),A=[];Z&&A.push("id(values(".concat(Z.values.map((function(e){return P(encodeURIComponent(e))})).join(","),"))")),s&&s.forEach((function(e){A.push("id_any(value(".concat(P(encodeURIComponent(e.value)),"))"))}));for(var N=0,W=Object.entries(j);N0&&A.push("".concat(G,"(").concat(Y.join(","),")"))}return A.join(",")}}({statusValues:e,categoryValues:t});return function(e,t){if(!e)return O({filter:void 0},t);var i=n(e);return O(i?{filter:i}:{filter:void 0},t)}},$=" ",ee=" ",te=function(){function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"Unknown";(0,a.Z)(this,e),this._defaultOptions={whitespaceFormat:!1,html:!1,leadingZero:!0,additionalFormatting:function(e){return e}},this.significantDigits=t,this.maxPositiveDecimalPosition=-1,this.maxNegativeDecimalPosition=-1,this.name=n}return(0,o.Z)(e,[{key:"addDataItem",value:function(e){var t=this.format(e).split(/\.|,/),n=(0,g.Z)(t,2),i=n[0],r=n[1];this.maxPositiveDecimalPosition=Math.max(this.maxPositiveDecimalPosition,i&&"0"!==i?i.length:0),this.maxNegativeDecimalPosition=Math.max(this.maxNegativeDecimalPosition,r?r.length:0)}},{key:"format",value:function(e){var t=e.toString(),n="",i="",r=0,s=0,l=!1,a=!1;if("NaN"===t)return"NaN";if(t.endsWith("Infinity"))return t.replace("Infinity","Inf");if(t.includes("e")){var o=t.split("-"),c=(0,g.Z)(o,2),u=c[0],d=c[1],h=0;u.includes(".")&&(h=1),t=Number(e).toFixed(Number(d)+h)}for(var f=t.replace(/,/,".").indexOf(".");sr;){var p=t[r];if("."===p||","===p)n+=".",a=!0;else{if(!l){if("0"===p){r+=1,a&&(n+=p);continue}l=!0}n+=p,s+=1}r+=1}if(i=t.substring(r),""===n&&""===i&&(n=t),"."===n[0]&&(n="0".concat(n)),""!==i){var m="."===i[0];if(i=i.replace(/\./,""),i="".concat(i[0],".").concat(i.substr(1)),i=Math.round(Number(i)),(i=isNaN(i)?"":i.toString()).length>1&&"."!==i[0]){var v=i[0];i=i[1];for(var b=n.length,I=n.split("."),C=(0,g.Z)(I,2)[1],x=C&&C.length-1||0,y=C?"0.":"",Z=x;Z>0;)y+="0",Z-=1;for(n=function(e,t){var n=e,i=t;if("string"===typeof e&&(n=Number(e)),"string"===typeof t&&(i=Number(t)),Number.isInteger(n)||Number.isInteger(i))return n+i;var r=e.toString(),s=r.length,l=r.indexOf("."),a=t.toString(),o=a.length,c=a.indexOf("."),u=Math.max(s-l,o-c)-1;return Number((n+i).toFixed(u))}(n,y+=v).toFixed(x+1).substr(0,b);n.length1&&void 0!==arguments[1]?arguments[1]:{},i=(0,s.Z)((0,s.Z)({},e._defaultOptions),n),r=i.whitespaceFormat,l=i.html,a=i.leadingZero,o=i.additionalFormatting,c={significantDigits:e.significantDigits,maxDecimalInputLength:e.maxNegativeDecimalPosition};if(B(e.significantDigits))return o(t.toString(),c);var u=e.format(t);if("NaN"===(u=o(u,c)))return u;if(r){var d=l?$:" ",h=u.split(/\.|,/),f=(0,g.Z)(h,2),p=f[0],m=f[1];"0"!==p||a||(p=m?"":"0"),p=p||"";for(var v=(m=m||"")?".":d;m.length=d&&I<=h}if(s)break}}catch(C){o.e(C)}finally{o.f()}if(!s)return!1}return!0}));return c}},Ne=(ye={},(0,b.Z)(ye,"empty","Empty rows"),(0,b.Z)(ye,"aborted","\u2014"),ye);function We(e){var t=e.column.id,n=e.runSetIdx,i=e.columnIdx,r=e.allCategoryValues,s=e.allStatusValues,a=e.filteredColumnValues,o=e.setCustomFilters,c=r[n][i],u=function(e){var t=e.categoryFilters,n=e.statusFilters,i=e.categoryFilterValues,r=e.statusFilterValues,s=[];return re(t,i)||(s=t),re(n,r)||(s=[].concat((0,l.Z)(s),(0,l.Z)(n))),s}({categoryFilters:k([n,"categories"],[],a),statusFilters:k([n,i],[],a),categoryFilterValues:c.map((function(e){return"".concat(e," ")})),statusFilterValues:s[n][i]}),d=0===u.length,h=u.length>1||u[0]===N,f=u&&u[0],g=(d?"all ":h&&"multiple")||f;return(0,j.jsxs)("select",{className:"filter-field",onChange:function(e){return o({id:t,value:e.target.value})},value:g,children:[h&&(0,j.jsx)("option",{value:"multiple",disabled:!0,children:u.map((function(e){return e.trim()})).filter((function(e){return"all"!==e&&e!==N})).join(", ")||"No filters selected"}),(0,j.jsx)("option",{value:"all ",children:"Show all"}),c.filter((function(e){return e in Ne})).map((function(e){return(0,j.jsx)("option",{value:e+" ",children:Ne[e]},e)})),(0,j.jsx)("optgroup",{label:"Category",children:c.filter((function(e){return!(e in Ne)})).sort().map((function(e){return(0,j.jsx)("option",{value:e+" ",className:e,children:e},e)}))}),(0,j.jsx)("optgroup",{label:"Status",children:s[n][i].filter((function(e){return e!==Fe})).sort().map((function(e){return(0,j.jsx)("option",{value:e,children:e},e)}))})]})}var Be=(0,i.memo)(We),Ge=[50,100,250,500,1e3,2500],we=function(){var e=X();return e.sort?e.sort.split(";").map((function(e){var t=e.split(",");return{id:t[0],desc:"desc"===t[1]}})):[]},Ye=function(e){var t=(0,i.useState)(!0),n=(0,g.Z)(t,2),r=n[0],a=n[1],o=(0,i.useState)(ve()),c=(0,g.Z)(o,2),u=c[0],d=c[1],v=(0,i.useState)({}),b=(0,g.Z)(v,2),I=b[0],C=b[1],x=(0,i.useState)(!1),y=(0,g.Z)(x,2),Z=y[0],F=y[1],A=(0,i.useState)(null),N=(0,g.Z)(A,2),Y=N[0],S=N[1],k=(0,i.useCallback)((function(t){var n,i=t.tool,r=t.name,s=t.column,l=t.isCategory,a=l?e.statusValues:e.categoryValues,o=[],c=(0,f.Z)(a[i][s]);try{for(c.s();!(n=c.n()).done;){var u=n.value;o.push({id:"".concat(i,"_").concat(r,"_").concat(s),value:"".concat(u).concat(l?"":" ")})}}catch(d){c.e(d)}finally{c.f()}return o}),[e.categoryValues,e.statusValues]),R=(0,i.useCallback)((function(t){var n,i=t.tool,r=t.name,s=t.column,l=[],a=(0,f.Z)(e.statusValues[i][s]);try{for(a.s();!(n=a.n()).done;){var o=n.value;l.push({id:"".concat(i,"_").concat(r,"_").concat(s),value:o})}}catch(g){a.e(g)}finally{a.f()}var c,u=(0,f.Z)(e.categoryValues[i][s]);try{for(u.s();!(c=u.n()).done;){var d=c.value,h="".concat(d," ");l.push({id:"".concat(i,"_").concat(r,"_").concat(s),value:h})}}catch(g){u.e(g)}finally{u.f()}return l}),[e.categoryValues,e.statusValues]),H=(0,i.useCallback)((function(t){"id"===t.id&&(t.isTableTabFilter=!0);var n=[].concat((0,l.Z)(e.filters.filter((function(e){return e.id!==t.id}))),[t]);n=n.filter((function(e){return""!==e.value})),e.addTypeToFilter(n);var i=[];if("status"===t.type){var r=J(t.id),s=r.tool,a=r.name,o=r.column,c=t.value;if("all"===c.trim())i=R({tool:s,name:a,column:o}),n=n.filter((function(e){var n=e.id,i=e.value;return!(n===t.id&&"all"===i.trim())}));else{var u=" "===c[c.length-1];i=k({tool:s,name:a,column:o,isCategory:u})}}e.addTypeToFilter(i),e.filterPlotData([].concat((0,l.Z)(n),(0,l.Z)(i)),!0)}),[e,k,R]),T=(0,i.useCallback)((function(t){var n=t.column.id,i=e.filters.find((function(e){return e.id===n}));return(0,j.jsx)(Ce,{id:n,setFilter:i,disableTaskText:Z,setCustomFilters:H,focusedFilter:Y,setFocusedFilter:S})}),[Z,e.filters,H,Y]),K=(0,i.useCallback)((function(t){var n=t.column.id,i=e.filters.find((function(e){return e.id===n}));return(0,j.jsx)(Ze,{id:n,setFilter:i,setCustomFilters:H,focusedFilter:Y,setFocusedFilter:S})}),[e.filters,H,Y]),L=(0,i.useMemo)((function(){var t=function(t,n,i){if("status"===n.type)return function(t,n,i){var r="".concat(t,"_").concat(n.display_title,"_").concat(i),l=I[r];return{id:r,Header:(0,j.jsx)(he,{column:n}),className:"reg-column",hidden:e.hiddenCols[t].includes(n.colIdx),minWidth:50,width:l||V(n,10),accessor:function(e){return e.results[t].values[i]},Cell:function(n){var i,r=n.row.original.results[t].category,s=n.row.original.results[t].href;return"aborted"===r?(s=void 0,i="Result missing because run was aborted or not executed"):"empty"===r?i="Result missing because task was not part of benchmark set":s&&(i="Click here to show output of tool"),(0,j.jsx)(ge,{cell:n,href:s,className:r,toggleLinkOverlay:e.toggleLinkOverlay,title:i,force:!0})},sortType:function(e,t,n,i){return w(e.values[n],t.values[n])},filter:function(e){return e},Filter:function(n){return(0,j.jsx)(Be,(0,s.Z)((0,s.Z)({},n),{},{runSetIdx:t,columnIdx:i,allCategoryValues:e.categoryValues,allStatusValues:e.statusValues,filteredColumnValues:u,setCustomFilters:H}))}}}(t,n,i);var r="".concat(t,"_").concat(n.display_title,"_").concat(i),l=I[r],a=W(n)?K:T;return{id:r,Header:(0,j.jsx)(he,{column:n}),className:"reg-column",hidden:e.hiddenCols[t].includes(n.colIdx),minWidth:50,width:l||V(n),accessor:function(e){return e.results[t].values[i]},Cell:function(t){return(0,j.jsx)(ge,{cell:t,toggleLinkOverlay:e.toggleLinkOverlay})},filter:function(e){return e},Filter:a,sortType:function(e,t,i,r){return W(n)?(s=e.values[i],l=t.values[i],G(s,1/0)-G(l,1/0)):w(e.values[i],t.values[i]);var s,l}}},n=e.tools.map((function(e,n){return me(e,n,t)})).flat();return[{Header:function(){return(0,j.jsx)("div",{className:"fixed-task-header",children:(0,j.jsx)("form",{children:(0,j.jsxs)("label",{title:"Fix the first column",children:["Fixed task:",(0,j.jsx)("input",{name:"fixed",type:"checkbox",checked:r,onChange:function(e){var t=e.target;return a(t.checked)}})]})})})},className:"fixed-task",id:"task-id-column",sticky:r?"left":"",columns:[(0,s.Z)((0,s.Z)({width:.3*window.innerWidth,minWidth:230},I.id&&{width:I.id}),{},{Header:(0,j.jsx)(he,{children:(0,j.jsx)(de,{handler:e.selectColumn})}),accessor:"id",Cell:function(t){var n=t.row.original.id.map((function(e){return(0,j.jsx)("span",{className:"row_id",children:e},e)})),i=t.row.original.href;return i?(0,j.jsx)("a",{className:"row__name--cellLink",href:i,title:"Click here to show source code",onClick:function(t){return e.toggleLinkOverlay(t,i)},children:n},i):(0,j.jsx)("span",{title:"This task has no associated file",children:n})},Filter:T,sortType:function(e,t,n,i){var r=Array.isArray(e.values[n])?e.values[n].join():e.values[n],s=Array.isArray(t.values[n])?t.values[n].join():t.values[n];return r>s?1:r0&&C((0,s.Z)((0,s.Z)({},I),e))}),[pe,I]),(0,i.useEffect)((function(){F(e.filters.some((function(e){var t=e.id,n=e.values;return"id"===t&&!B(n)})));var t=ve();be()(t,u)||d(t),ce>=te&&ne(te-1)}),[e.filters,u,ne,ce,te]);var Ie=(0,h.TH)();(0,i.useEffect)((function(e){se(X().pageSize||250),ae(we()),ne(X().page-1||0)}),[Ie,se,ae,ne,window.location.href]);var xe=function(e){return(0,j.jsx)("div",(0,s.Z)((0,s.Z)({className:"tr headergroup"},e.getHeaderGroupProps()),{},{children:e.headers.map((function(e){return(0,j.jsxs)("div",(0,s.Z)((0,s.Z)({},e.getHeaderProps({className:"th header ".concat(e.headers?"outer ":"").concat(e.className)})),{},{children:[(0,j.jsx)("div",(0,s.Z)((0,s.Z)({},e.canSort&&(!e.className||!e.className.includes("separator"))&&e.getSortByToggleProps({className:"header-sort-container clickable ".concat(e.isSorted?e.isSortedDesc?"sorted-desc ":"sorted-asc ":"")})),{},{children:e.render("Header")})),(!e.className||!e.className.includes("separator"))&&(0,j.jsx)("div",(0,s.Z)((0,s.Z)({},e.getResizerProps()),{},{className:"resizer ".concat(e.isResizing?"isResizing":"")}))]}))}))}))};return(0,j.jsx)("div",{className:"main-table",children:(0,j.jsxs)("div",{className:"table sticky",children:[(0,j.jsx)("div",{className:"table-content",children:(0,j.jsxs)("div",(0,s.Z)((0,s.Z)({className:"table-container"},P()),{},{children:[function(e){var t=e[0],n=e.filter((function(e){return e.headers.some((function(e){return e.canFilter}))}));return(0,j.jsxs)("div",{className:"table-header",children:[xe(t),(0,j.jsxs)("div",{className:"shadow-container",children:[e.slice(1).map(xe),n.map((function(e){return(0,j.jsx)("div",(0,s.Z)((0,s.Z)({className:"tr headergroup filter"},e.getHeaderGroupProps()),{},{children:e.headers.map((function(e){return(0,j.jsx)("div",(0,s.Z)((0,s.Z)({},e.getHeaderProps({className:"th header filter ".concat(e.headers?"outer ":"").concat(e.className)})),{},{children:e.canFilter?e.render("Filter"):null}))}))}))}))]})]})}(_),(0,j.jsx)("div",(0,s.Z)((0,s.Z)({},M()),{},{className:"table-body body",children:Q.map((function(e){return z(e),(0,j.jsx)("div",(0,s.Z)((0,s.Z)({},e.getRowProps()),{},{className:"tr",children:e.cells.map((function(e){return(0,j.jsx)("div",(0,s.Z)((0,s.Z)({},e.getCellProps({className:"td "+(e.column.className||"")})),{},{children:e.render("Cell")}))}))}))}))}))]}))}),(0,j.jsxs)("div",{className:"pagination",children:[(0,j.jsxs)("div",{id:"pagination-previous",className:"pagination-container",children:[(0,j.jsx)("div",{onClick:function(){return re()},className:"pagination-element button".concat(q?"":" disabled"),children:"Previous"})," "]}),(0,j.jsxs)("div",{id:"pagination-center",className:"pagination-container",children:[(0,j.jsxs)("div",{id:"goto-page-element",className:"pagination-element",children:["Page",(0,j.jsx)("input",{"aria-label":"jump to page",type:"number",value:Number(ce)+1,onChange:function(e){return ne(Number(e.target.value)-1)}}),"of ",ee.length]}),(0,j.jsx)("div",{id:"set-page-element",className:"pagination-element",children:(0,j.jsx)("select",{value:ue,onChange:function(e){return se(Number(e.target.value))},children:Ge.map((function(e){return(0,j.jsxs)("option",{value:e,children:[e," rows"]},e)}))})})]}),(0,j.jsxs)("div",{id:"pagination-next",className:"pagination-container",children:[(0,j.jsx)("div",{onClick:function(){return ie()},className:"pagination-element button".concat($?"":" disabled"),children:"Next"})," "]})]})]})})},Se=n(4165),Ve=n(5861);n(9e3);var ke=[],Re={},He=1,Te=[{template:"data:text/plain;base64,Ly8gVGhpcyBmaWxlIGlzIHBhcnQgb2YgQmVuY2hFeGVjLCBhIGZyYW1ld29yayBmb3IgcmVsaWFibGUgYmVuY2htYXJraW5nOgovLyBodHRwczovL2dpdGh1Yi5jb20vc29zeS1sYWIvYmVuY2hleGVjCi8vCi8vIFNQRFgtRmlsZUNvcHlyaWdodFRleHQ6IDIwMTktMjAyMCBEaXJrIEJleWVyIDxodHRwczovL3d3dy5zb3N5LWxhYi5vcmc+Ci8vCi8vIFNQRFgtTGljZW5zZS1JZGVudGlmaWVyOiBBcGFjaGUtMi4wCgovLyBDT1BZIE9GIHV0aWxzLmpzLCBhcyBpbXBvcnRzIHdpbGwgbm90IHdvcmsgaGVyZQovKioKICogRnVuY3Rpb24gdG8gc2FmZWx5IGFkZCB0d28gbnVtYmVycyBpbiBhIHdheSB0aGF0IHNob3VsZCBtaXRpZ2F0ZSBlcnJvcnMKICogY2F1c2VkIGJ5IGluYWNjdXJhdGUgZmxvYXRpbmcgcG9pbnQgb3BlcmF0aW9ucyBpbiBqYXZhc2NyaXB0CiAqIEBwYXJhbSB7TnVtYmVyfFN0cmluZ30gYSAtIFRoZSBiYXNlIG51bWJlcgogKiBAcGFyYW0ge051bWJlcnxTdHJpbmd9IGIgLSBUaGUgbnVtYmVyIHRvIGFkZAogKgogKiBAcmV0dXJucyB7TnVtYmVyfSBUaGUgcmVzdWx0IG9mIHRoZSBhZGRpdGlvbgogKi8KY29uc3Qgc2FmZUFkZCA9IChhLCBiKSA9PiB7CiAgbGV0IGFOdW0gPSBhOwogIGxldCBiTnVtID0gYjsKCiAgaWYgKHR5cGVvZiBhID09PSAic3RyaW5nIikgewogICAgYU51bSA9IE51bWJlcihhKTsKICB9CiAgaWYgKHR5cGVvZiBiID09PSAic3RyaW5nIikgewogICAgYk51bSA9IE51bWJlcihiKTsKICB9CgogIGlmIChOdW1iZXIuaXNJbnRlZ2VyKGFOdW0pIHx8IE51bWJlci5pc0ludGVnZXIoYk51bSkpIHsKICAgIHJldHVybiBhTnVtICsgYk51bTsKICB9CgogIGNvbnN0IGFTdHJpbmcgPSBhLnRvU3RyaW5nKCk7CiAgY29uc3QgYUxlbmd0aCA9IGFTdHJpbmcubGVuZ3RoOwogIGNvbnN0IGFEZWNpbWFsUG9pbnQgPSBhU3RyaW5nLmluZGV4T2YoIi4iKTsKICBjb25zdCBiU3RyaW5nID0gYi50b1N0cmluZygpOwogIGNvbnN0IGJMZW5ndGggPSBiU3RyaW5nLmxlbmd0aDsKICBjb25zdCBiRGVjaW1hbFBvaW50ID0gYlN0cmluZy5pbmRleE9mKCIuIik7CgogIGNvbnN0IGxlbmd0aCA9IE1hdGgubWF4KGFMZW5ndGggLSBhRGVjaW1hbFBvaW50LCBiTGVuZ3RoIC0gYkRlY2ltYWxQb2ludCkgLSAxOwoKICByZXR1cm4gTnVtYmVyKChhTnVtICsgYk51bSkudG9GaXhlZChsZW5ndGgpKTsKfTsKCmNvbnN0IG1hdGhTdHJpbmdNYXggPSAoYSwgYikgPT4gewogIGNvbnN0IG51bUEgPSBOdW1iZXIoYSk7CiAgY29uc3QgbnVtQiA9IE51bWJlcihiKTsKICByZXR1cm4gbnVtQSA+IG51bUIgPyBhIDogYjsKfTsKCmNvbnN0IG1hdGhTdHJpbmdNaW4gPSAoYSwgYikgPT4gewogIGNvbnN0IG51bUEgPSBOdW1iZXIoYSk7CiAgY29uc3QgbnVtQiA9IE51bWJlcihiKTsKICByZXR1cm4gbnVtQSA8IG51bUIgPyBhIDogYjsKfTsKCi8qKgogKiBUaGlzIGZ1bmN0aW9uIGVpdGhlciBhZGRzIHR3byBudW1iZXJzIG9yIGluY3JlbWVudHMgdGhlIG51bWJlcgogKiBwYXNzZWQgaW4gdGhlIGZpcnN0IHBhcmFtZXRlciBpZiB0aGUgdHlwZSBpcyAic3RhdHVzIi4KICogSWYgdGhlIHNlY29uZCBwYXJhbWV0ZXIgaXMgbm90IGEgbnVtYmVyIGFuZCB0aGUgdHlwZSBpcyBub3Qgc3RhdHVzLAogKiB0aGUgZmlyc3QgcGFyYW1ldGVyIHdpbGwgYmUgcmV0dXJuZWQKICoKICogQHBhcmFtIHtOdW1iZXJ9IGEKICogQHBhcmFtIHsqfSBiCiAqIEBwYXJhbSB7U3RyaW5nfSB0eXBlCiAqLwpjb25zdCBtYXliZUFkZCA9IChhLCBiLCB0eXBlKSA9PiB7CiAgaWYgKE51bWJlcihiKSkgewogICAgcmV0dXJuIHNhZmVBZGQoYSwgYik7CiAgfQogIGlmICh0eXBlID09PSAic3RhdHVzIikgewogICAgcmV0dXJuIGEgKyAxOwogIH0KICByZXR1cm4gYTsKfTsKY29uc3QgcmVtb3ZlUm91bmRPZmYgPSAobnVtKSA9PiB7CiAgY29uc3Qgc3RyID0gbnVtLnRvU3RyaW5nKCk7CiAgaWYgKHN0ci5tYXRjaCgvXC4uKz8wezIsfVxkJC8pKSB7CiAgICByZXR1cm4gTnVtYmVyKHN0ci5zdWJzdHIoMCwgc3RyLmxlbmd0aCAtIDEpKTsKICB9CiAgcmV0dXJuIG51bTsKfTsKCmNvbnN0IGNhbGN1bGF0ZU1lYW4gPSAodmFsdWVzLCBhbGxJdGVtcykgPT4gewogIGNvbnN0IG51bU1pbiA9IE51bWJlcih2YWx1ZXMubWluKTsKICBjb25zdCBudW1NYXggPSBOdW1iZXIodmFsdWVzLm1heCk7CiAgaWYgKG51bU1pbiA9PT0gLUluZmluaXR5ICYmIG51bU1heCA9PT0gSW5maW5pdHkpIHsKICAgIHZhbHVlcy5hdmcgPSAiTmFOIjsKICB9IGVsc2UgaWYgKG51bU1pbiA9PT0gLUluZmluaXR5KSB7CiAgICB2YWx1ZXMuYXZnID0gIi1JbmZpbml0eSI7CiAgfSBlbHNlIGlmIChudW1NYXggPT09IEluZmluaXR5KSB7CiAgICB2YWx1ZXMuYXZnID0gIkluZmluaXR5IjsKICB9IGVsc2UgewogICAgdmFsdWVzLmF2ZyA9IHJlbW92ZVJvdW5kT2ZmKHZhbHVlcy5zdW0gLyBhbGxJdGVtcy5sZW5ndGgpOwogIH0KfTsKCmNvbnN0IGNhbGN1bGF0ZU1lZGlhbiA9ICh2YWx1ZXMsIGFsbEl0ZW1zKSA9PiB7CiAgaWYgKGFsbEl0ZW1zLmxlbmd0aCAlIDIgPT09IDApIHsKICAgIGNvbnN0IGlkeCA9IGFsbEl0ZW1zLmxlbmd0aCAvIDI7CiAgICB2YWx1ZXMubWVkaWFuID0KICAgICAgKE51bWJlcihhbGxJdGVtc1tpZHggLSAxXS5jb2x1bW4pICsgTnVtYmVyKGFsbEl0ZW1zW2lkeF0uY29sdW1uKSkgLyAyLjA7CiAgfSBlbHNlIHsKICAgIHZhbHVlcy5tZWRpYW4gPSBhbGxJdGVtc1tNYXRoLmZsb29yKGFsbEl0ZW1zLmxlbmd0aCAvIDIuMCldLmNvbHVtbjsKICB9Cn07CmNvbnN0IGNhbGN1bGF0ZVN0ZGV2ID0gKGhhc05lZ0luZiwgaGFzUG9zSW5mLCB2YXJpYW5jZSwgc2l6ZSkgPT4gewogIGlmIChoYXNOZWdJbmYgJiYgaGFzUG9zSW5mKSB7CiAgICByZXR1cm4gIk5hTiI7CiAgfQogIGlmIChoYXNOZWdJbmYgfHwgaGFzUG9zSW5mKSB7CiAgICByZXR1cm4gSW5maW5pdHk7CiAgfQogIHJldHVybiBNYXRoLnNxcnQodmFyaWFuY2UgLyBzaXplKTsKfTsKCmNvbnN0IHBhcnNlUHl0aG9uSW5maW5pdHlWYWx1ZXMgPSAoZGF0YSkgPT4KICBkYXRhLm1hcCgoaXRlbSkgPT4gewogICAgaWYgKGl0ZW0uY29sdW1uVHlwZSA9PT0gInN0YXR1cyIgfHwgIWl0ZW0uY29sdW1uLmVuZHNXaXRoKCJJbmYiKSkgewogICAgICByZXR1cm4gaXRlbTsKICAgIH0KICAgIC8vIFdlIGhhdmUgYSBweXRob24gSW5maW5pdHkgdmFsdWUgdGhhdCB3ZSB3YW50IHRvIHRyYW5zZmVyIHRvIGEgc3RyaW5nCiAgICAvLyB0aGF0IGNhbiBiZSBpbnRlcnByZXRlZCBhcyBhIEphdmFTY3JpcHQgSW5maW5pdHkgdmFsdWUKICAgIGl0ZW0uY29sdW1uID0gaXRlbS5jb2x1bW4ucmVwbGFjZSgiSW5mIiwgIkluZmluaXR5Iik7CiAgICByZXR1cm4gaXRlbTsKICB9KTsKCi8vIElmIGEgYnVja2V0IGNvbnRhaW5zIGEgTmFOIHZhbHVlLCB3ZSBjYW4gbm90IHBlcmZvcm0gYW55IHN0YXQgY2FsY3VsYXRpb24KY29uc3Qgc2hvdWxkU2tpcEJ1Y2tldCA9IChidWNrZXRNZXRhLCBrZXkpID0+IHsKICBpZiAoYnVja2V0TWV0YVtrZXldICYmIGJ1Y2tldE1ldGFba2V5XS5oYXNOYU4pIHsKICAgIHJldHVybiB0cnVlOwogIH0KICByZXR1cm4gZmFsc2U7Cn07CgovKioKICogRnVuY3Rpb24gdGhhdCBrZWVwcyB0cmFjayBvZiB0aGUgbWF4IGlucHV0dGVkIGRlY2ltYWwgbGVuZ3RoIG9mIGNvbHVtbiB2YWx1ZXMuCiAqIFRoaXMgaXMgdXNlZCBmb3IgY29uZGl0aW9uYWwgZm9ybWF0dGluZyBpbiB0aGUgc3RhdHMgbW9kdWxlIHRvIGRldGVybWluZSB0aGUgbWF4aW11bQogKiBhbW91bnQgb2YgcGFkZGVkIDBzCiAqCiAqIEB0eXBlZGVmIFVwZGF0ZU1heERlY2ltYWxNZXRhSW5mb1BhcmFtCiAqIEBwYXJhbSB7U3RyaW5nfSBjb2x1bW5UeXBlIC0gVGhlIHR5cGUgb2YgdGhlIGN1cnJlbnQgY29sdW1uCiAqIEBwYXJhbSB7T2JqZWN0fSBjb2x1bW4gLSBUaGUgY29sdW1uIG9iamVjdAogKiBAcGFyYW0ge09iamVjdH0gYnVja2V0IC0gVGhlIGN1cnJlbnQgc3RhdCBidWNrZXQgaW4gY29udGV4dAogKgogKiBAcGFyYW0ge1VwZGF0ZU1heERlY2ltYWxNZXRhSW5mb1BhcmFtfSBwYXJhbQogKi8KY29uc3QgdXBkYXRlTWF4RGVjaW1hbE1ldGFJbmZvID0gKHsgY29sdW1uVHlwZSwgY29sdW1uLCBidWNrZXQgfSkgPT4gewogIGlmIChjb2x1bW5UeXBlICE9PSAic3RhdHVzIikgewogICAgY29uc3QgWywgZGVjaW1hbF0gPSBjb2x1bW4uc3BsaXQoIi4iKTsKICAgIGJ1Y2tldC5tZXRhLm1heERlY2ltYWxzID0gTWF0aC5tYXgoCiAgICAgIGJ1Y2tldC5tZXRhLm1heERlY2ltYWxzLAogICAgICBkZWNpbWFsPy5sZW5ndGggPz8gMCwKICAgICk7CiAgfQp9OwoKLyoqCiAqIEB0eXBlZGVmICBNZXRhSW5mbwogKiAgQWRkaXRpb25hbCBtZXRhaW5mb3JtYXRpb24gdG8gYmUgdXNlZCBmb3IgcG9zdC1wcm9jZXNzaW5nIChsaWtlIG51bWJlciBmb3JtYXR0aW5nKQogKiBAcHJvcCB7c3RyaW5nfG51bGx9IHR5cGUgLSBUaGUgY29sdW1uIHR5cGUKICogQHByb3Age251bWJlcn0gbWF4RGVjaW1hbHMgLSBUaGUgbWF4aW11bSBhbW91bnQgb2YgZGVjaW1hbHMgYWNyb3NzIGFsbCBudW1iZXJzIGluIHRoZSBidWNrZXQKICogICAgICAgICAgICAgICAgICAgICAgICAgICAgICB1c2VkIGZvciBudW1iZXIgZm9ybWF0dGluZwogKi8KCi8qKgogKiBAdHlwZWRlZiBCdWNrZXQKICogU3RhdGlzdGljcyB0byBiZSBkaXNwbGF5ZWQgaW4gdGhlIHJlYWN0IHRhYmxlIGFyZSBjYWxjdWxhdGVkIGluIGJ1Y2tldHMsIGVhY2ggYnVja2V0IHJlcHJlc2VudGluZyBvbmUgInJvdyIgaW4gdGhlCiAqIHN0YXRpc3RpY3MgdGFibGUgKHRvdGFsLCBjb3JyZWN0LCBjb3JyZWN0IHRydWUsIGV0YykuCiAqIFRoaXMgb2JqZWN0IHN0b3JlcyBhbGwgYWNjdW11bGF0ZWQgaW5mb3JtYXRpb24gYWJvdXQgdGhpcyBidWNrZXQuCiAqCiAqIEBwcm9wIHtudW1iZXJ9IHN1bSAtIFRoZSBzdW0gb2YgdGhlIGJ1Y2tldAogKiBAcHJvcCB7bnVtYmVyfSBhdmcgLSBUaGUgYXZlcmFnZSBvZiB0aGUgYnVja2V0CiAqIEBwcm9wIHtudW1iZXJ8c3RyaW5nfSBtYXggLSBUaGUgbWF4aW1hbCB2YWx1ZSBvZiB0aGUgYnVja2V0CiAqIEBwcm9wIHtudW1iZXJ9IG1lZGlhbiAtIFRoZSBtZWRpYW4gdmFsdWUgb2YgdGhlIGJ1Y2tldAogKiBAcHJvcCB7bnVtYmVyfHN0cmluZ30gbWluIC0gVGhlIG1pbmltdW0gdmFsdWUgb2YgdGhlIGJ1Y2tldAogKiBAcHJvcCB7bnVtYmVyfSBzdGRldiAtIFRoZSBzdGFuZGFyZCBkZXZpYXRpb24gb2YgdGhlIGJ1Y2tldAogKiBAcHJvcCB7bnVtYmVyfSB2YXJpYW5jZSAtIFRoZSB2YXJpYW5jZSBvZiB0aGUgYnVja2V0CiAqIEBwcm9wIHtNZXRhSW5mb30gW21ldGFdIC0gTWV0YSBpbmZvcm1hdGlvbiBvZiB0aGUgYnVja2V0CiAqLwoKb25tZXNzYWdlID0gZnVuY3Rpb24gKGUpIHsKICBjb25zdCB7IGRhdGEsIHRyYW5zYWN0aW9uIH0gPSBlLmRhdGE7CgogIC8vIHRlbXBsYXRlCiAgLyoqIEBjb25zdCB7IEJ1Y2tldCB9ICovCiAgY29uc3QgZGVmYXVsdE9iaiA9IHsKICAgIHN1bTogMCwKICAgIGF2ZzogMCwKICAgIG1heDogIi1JbmZpbml0eSIsCiAgICBtZWRpYW46IDAsCiAgICBtaW46ICJJbmZpbml0eSIsCiAgICBzdGRldjogMCwKICAgIHZhcmlhbmNlOiAwLAogIH07CgogIC8qKiBAY29uc3Qge01ldGFJbmZvfSAqLwogIGNvbnN0IG1ldGFUZW1wbGF0ZSA9IHsKICAgIHR5cGU6IG51bGwsCiAgICBtYXhEZWNpbWFsczogMCwKICB9OwoKICAvLyBDb3B5IG9mIHRoZSB0ZW1wbGF0ZSB3aXRoIGFsbCB2YWx1ZXMgcmVwbGFjZWQgd2l0aCBOYU4KICBjb25zdCBuYW5PYmogPSB7IC4uLmRlZmF1bHRPYmogfTsKICBmb3IgKGNvbnN0IG9iaktleSBvZiBPYmplY3Qua2V5cyhuYW5PYmopKSB7CiAgICBuYW5PYmpbb2JqS2V5XSA9ICJOYU4iOwogIH0KCiAgbGV0IGNvcHkgPSBbLi4uZGF0YV0uZmlsdGVyKAogICAgKGkpID0+IGkgJiYgaS5jb2x1bW4gIT09IHVuZGVmaW5lZCAmJiBpLmNvbHVtbiAhPT0gbnVsbCwKICApOwogIGNvcHkgPSBwYXJzZVB5dGhvbkluZmluaXR5VmFsdWVzKGNvcHkpOwoKICBpZiAoY29weS5sZW5ndGggPT09IDApIHsKICAgIC8vIE5vIGRhdGEgdG8gcGVyZm9ybSBjYWxjdWxhdGlvbnMgd2l0aAogICAgcG9zdFJlc3VsdCh7IHRvdGFsOiB1bmRlZmluZWQgfSwgdHJhbnNhY3Rpb24pOwogICAgcmV0dXJuOwogIH0KCiAgY29uc3QgeyBjb2x1bW5UeXBlIH0gPSBjb3B5WzBdOwogIG1ldGFUZW1wbGF0ZS50eXBlID0gY29sdW1uVHlwZTsKCiAgY29weS5zb3J0KChhLCBiKSA9PiBhLmNvbHVtbiAtIGIuY29sdW1uKTsKCiAgLyoqIEB0eXBlIHtPYmplY3QuPHN0cmluZywgQnVja2V0Pn0gKi8KICBjb25zdCBidWNrZXRzID0ge307CiAgY29uc3QgYnVja2V0TmFOSW5mbyA9IHt9OyAvLyB1c2VkIHRvIHN0b3JlIE5hTiBpbmZvIG9mIGJ1Y2tldHMKCiAgLyoqIEB0eXBlIHtCdWNrZXR9ICovCiAgbGV0IHRvdGFsID0geyAuLi5kZWZhdWx0T2JqLCBpdGVtczogW10sIG1ldGE6IHsgLi4ubWV0YVRlbXBsYXRlIH0gfTsKCiAgdG90YWwubWF4ID0gY29weVtjb3B5Lmxlbmd0aCAtIDFdLmNvbHVtbjsKICB0b3RhbC5taW4gPSBjb3B5WzBdLmNvbHVtbjsKCiAgY29uc3QgdG90YWxOYU5JbmZvID0gewogICAgaGFzTmFOOiBjb3B5LnNvbWUoKGl0ZW0pID0+IHsKICAgICAgaWYgKGl0ZW0uY29sdW1uVHlwZSAhPT0gInN0YXR1cyIgJiYgaXNOYU4oaXRlbS5jb2x1bW4pKSB7CiAgICAgICAgcmV0dXJuIHRydWU7CiAgICAgIH0KICAgICAgcmV0dXJuIGZhbHNlOwogICAgfSksCiAgfTsKCiAgLy8gQnVja2V0IHNldHVwIHdpdGggc3VtIGFuZCBtaW4vbWF4CiAgZm9yIChjb25zdCBpdGVtIG9mIGNvcHkpIHsKICAgIGNvbnN0IGtleSA9IGAke2l0ZW0uY2F0ZWdvcnlUeXBlfV8ke2l0ZW0ucmVzdWx0VHlwZX1gOwogICAgY29uc3QgdG90YWxLZXkgPSBgJHtpdGVtLmNhdGVnb3J5VHlwZX1gOwogICAgY29uc3QgeyBjb2x1bW5UeXBlOiB0eXBlLCBjb2x1bW4sIGNvbHVtblRpdGxlOiB0aXRsZSB9ID0gaXRlbTsKICAgIGlmICghdG90YWwudGl0bGUpIHsKICAgICAgdG90YWwudGl0bGUgPSB0aXRsZTsKICAgIH0KICAgIGNvbnN0IGJ1Y2tldCA9IGJ1Y2tldHNba2V5XSB8fCB7CiAgICAgIC4uLmRlZmF1bHRPYmosCiAgICAgIHRpdGxlLAogICAgICBpdGVtczogW10sCiAgICAgIG1ldGE6IHsgLi4ubWV0YVRlbXBsYXRlIH0sCiAgICB9OwoKICAgIGNvbnN0IHN1YlRvdGFsQnVja2V0ID0gYnVja2V0c1t0b3RhbEtleV0gfHwgewogICAgICAuLi5kZWZhdWx0T2JqLAogICAgICB0aXRsZSwKICAgICAgaXRlbXM6IFtdLAogICAgICBtZXRhOiB7IC4uLm1ldGFUZW1wbGF0ZSB9LAogICAgfTsKCiAgICBjb25zdCBpdGVtSXNOYU4gPSB0eXBlICE9PSAic3RhdHVzIiAmJiBpc05hTihjb2x1bW4pOwoKICAgIC8vIGlmIG9uZSBpdGVtIGlzIE5hTiB3ZSBzdG9yZSB0aGF0IGluZm8gc28gd2UgY2FuIGRlZmF1bHQgYWxsCiAgICAvLyBjYWxjdWxhdGVkIHZhbHVlcyBmb3IgdGhpcyBidWNrZXQgdG8gTmFOCiAgICBpZiAoaXRlbUlzTmFOKSB7CiAgICAgIGJ1Y2tldE5hTkluZm9ba2V5XSA9IHsgaGFzTmFOOiB0cnVlIH07CiAgICAgIGJ1Y2tldE5hTkluZm9bdG90YWxLZXldID0geyBoYXNOYU46IHRydWUgfTsKCiAgICAgIC8vIHNldCBhbGwgdmFsdWVzIGZvciB0aGlzIGJ1Y2tldCB0byBOYU4KICAgICAgYnVja2V0c1trZXldID0geyAuLi5uYW5PYmosIHRpdGxlIH07CiAgICAgIGJ1Y2tldHNbdG90YWxLZXldID0geyAuLi5uYW5PYmosIHRpdGxlIH07CiAgICAgIGNvbnRpbnVlOwogICAgfQoKICAgIC8vIHdlIGNoZWNrIGlmIHdlIHNob3VsZCBza2lwIGNhbGN1bGF0aW9uIGZvciB0aGVzZSBidWNrZXRzCiAgICBjb25zdCBza2lwQnVja2V0ID0gc2hvdWxkU2tpcEJ1Y2tldChidWNrZXROYU5JbmZvLCBrZXkpOwogICAgY29uc3Qgc2tpcFN1YlRvdGFsID0gc2hvdWxkU2tpcEJ1Y2tldChidWNrZXROYU5JbmZvLCB0b3RhbEtleSk7CgogICAgaWYgKCFza2lwQnVja2V0KSB7CiAgICAgIGJ1Y2tldC5zdW0gPSBtYXliZUFkZChidWNrZXQuc3VtLCBjb2x1bW4sIHR5cGUpOwogICAgICB1cGRhdGVNYXhEZWNpbWFsTWV0YUluZm8oeyBjb2x1bW5UeXBlLCBjb2x1bW4sIGJ1Y2tldCB9KTsKICAgIH0KICAgIGlmICghc2tpcFN1YlRvdGFsKSB7CiAgICAgIHN1YlRvdGFsQnVja2V0LnN1bSA9IG1heWJlQWRkKHN1YlRvdGFsQnVja2V0LnN1bSwgY29sdW1uLCB0eXBlKTsKICAgICAgdXBkYXRlTWF4RGVjaW1hbE1ldGFJbmZvKHsgY29sdW1uVHlwZSwgY29sdW1uLCBidWNrZXQ6IHN1YlRvdGFsQnVja2V0IH0pOwogICAgfQogICAgaWYgKCF0b3RhbE5hTkluZm8uaGFzTmFOKSB7CiAgICAgIHRvdGFsLnN1bSA9IG1heWJlQWRkKHRvdGFsLnN1bSwgY29sdW1uLCB0eXBlKTsKICAgICAgdXBkYXRlTWF4RGVjaW1hbE1ldGFJbmZvKHsgY29sdW1uVHlwZSwgY29sdW1uLCBidWNrZXQ6IHRvdGFsIH0pOwogICAgfQoKICAgIGlmICghaXNOYU4oTnVtYmVyKGNvbHVtbikpKSB7CiAgICAgIGlmICghc2tpcEJ1Y2tldCkgewogICAgICAgIGJ1Y2tldC5tYXggPSBtYXRoU3RyaW5nTWF4KGJ1Y2tldC5tYXgsIGNvbHVtbik7CiAgICAgICAgYnVja2V0Lm1pbiA9IG1hdGhTdHJpbmdNaW4oYnVja2V0Lm1pbiwgY29sdW1uKTsKICAgICAgfQogICAgICBpZiAoIXNraXBTdWJUb3RhbCkgewogICAgICAgIHN1YlRvdGFsQnVja2V0Lm1heCA9IG1hdGhTdHJpbmdNYXgoc3ViVG90YWxCdWNrZXQubWF4LCBjb2x1bW4pOwogICAgICAgIHN1YlRvdGFsQnVja2V0Lm1pbiA9IG1hdGhTdHJpbmdNaW4oc3ViVG90YWxCdWNrZXQubWluLCBjb2x1bW4pOwogICAgICB9CiAgICB9CiAgICBpZiAoIXNraXBCdWNrZXQpIHsKICAgICAgdHJ5IHsKICAgICAgICBidWNrZXQuaXRlbXMucHVzaChpdGVtKTsKICAgICAgfSBjYXRjaCAoZSkgewogICAgICAgIGNvbnNvbGUuZSh7IGJ1Y2tldCwgYnVja2V0TWV0YTogYnVja2V0TmFOSW5mbywga2V5IH0pOwogICAgICB9CiAgICB9CiAgICBpZiAoIXNraXBTdWJUb3RhbCkgewogICAgICB0cnkgewogICAgICAgIHN1YlRvdGFsQnVja2V0Lml0ZW1zLnB1c2goaXRlbSk7CiAgICAgIH0gY2F0Y2ggKGUpIHsKICAgICAgICBjb25zb2xlLmUoeyBzdWJUb3RhbEJ1Y2tldCwgYnVja2V0TWV0YTogYnVja2V0TmFOSW5mbywgdG90YWxLZXkgfSk7CiAgICAgIH0KICAgIH0KCiAgICBidWNrZXRzW2tleV0gPSBidWNrZXQ7CiAgICBidWNrZXRzW3RvdGFsS2V5XSA9IHN1YlRvdGFsQnVja2V0OwogIH0KCiAgZm9yIChjb25zdCBbYnVja2V0LCB2YWx1ZXNdIG9mIE9iamVjdC5lbnRyaWVzKGJ1Y2tldHMpKSB7CiAgICBpZiAoc2hvdWxkU2tpcEJ1Y2tldChidWNrZXROYU5JbmZvLCBidWNrZXQpKSB7CiAgICAgIGNvbnRpbnVlOwogICAgfQogICAgY2FsY3VsYXRlTWVhbih2YWx1ZXMsIHZhbHVlcy5pdGVtcyk7CgogICAgY2FsY3VsYXRlTWVkaWFuKHZhbHVlcywgdmFsdWVzLml0ZW1zKTsKICAgIGJ1Y2tldHNbYnVja2V0XSA9IHZhbHVlczsKICB9CiAgY29uc3QgdG90YWxIYXNOYU4gPSB0b3RhbE5hTkluZm8uaGFzTmFOOwoKICBpZiAodG90YWxIYXNOYU4pIHsKICAgIHRvdGFsID0geyAuLi50b3RhbCwgLi4ubmFuT2JqIH07CiAgfSBlbHNlIHsKICAgIGNhbGN1bGF0ZU1lYW4odG90YWwsIGNvcHkpOwogICAgY2FsY3VsYXRlTWVkaWFuKHRvdGFsLCBjb3B5KTsKICB9CgogIGZvciAoY29uc3QgaXRlbSBvZiBjb3B5KSB7CiAgICBjb25zdCB7IGNvbHVtbiB9ID0gaXRlbTsKICAgIGlmIChpc05hTihOdW1iZXIoY29sdW1uKSkpIHsKICAgICAgY29udGludWU7CiAgICB9CiAgICBjb25zdCBudW1Db2wgPSBOdW1iZXIoY29sdW1uKTsKICAgIGNvbnN0IGtleSA9IGAke2l0ZW0uY2F0ZWdvcnlUeXBlfV8ke2l0ZW0ucmVzdWx0VHlwZX1gOwogICAgY29uc3QgdG90YWxLZXkgPSBgJHtpdGVtLmNhdGVnb3J5VHlwZX1gOwogICAgY29uc3QgYnVja2V0ID0gYnVja2V0c1trZXldOwogICAgY29uc3Qgc3ViVG90YWxCdWNrZXQgPSBidWNrZXRzW3RvdGFsS2V5XTsKICAgIGNvbnN0IGRpZmZCdWNrZXQgPSBudW1Db2wgLSBidWNrZXQuYXZnOwogICAgY29uc3QgZGlmZlN1YlRvdGFsID0gbnVtQ29sIC0gc3ViVG90YWxCdWNrZXQuYXZnOwogICAgY29uc3QgZGlmZlRvdGFsID0gbnVtQ29sIC0gdG90YWwuYXZnOwogICAgdG90YWwudmFyaWFuY2UgKz0gTWF0aC5wb3coZGlmZlRvdGFsLCAyKTsKICAgIGJ1Y2tldC52YXJpYW5jZSArPSBNYXRoLnBvdyhkaWZmQnVja2V0LCAyKTsKICAgIHN1YlRvdGFsQnVja2V0LnZhcmlhbmNlICs9IE1hdGgucG93KGRpZmZTdWJUb3RhbCwgMik7CiAgfQoKICBjb25zdCB0b3RhbEhhc05lZ0luZiA9IE51bWJlcih0b3RhbC5taW4pID09PSAtSW5maW5pdHk7CiAgY29uc3QgdG90YWxIYXNQb3NJbmYgPSBOdW1iZXIodG90YWwubWF4KSA9PT0gSW5maW5pdHk7CiAgdG90YWwuc3RkZXYgPSBjYWxjdWxhdGVTdGRldigKICAgIHRvdGFsSGFzTmVnSW5mLAogICAgdG90YWxIYXNQb3NJbmYsCiAgICB0b3RhbC52YXJpYW5jZSwKICAgIGNvcHkubGVuZ3RoLAogICk7CgogIGZvciAoY29uc3QgW2J1Y2tldCwgdmFsdWVzXSBvZiBPYmplY3QuZW50cmllcyhidWNrZXRzKSkgewogICAgaWYgKHNob3VsZFNraXBCdWNrZXQoYnVja2V0TmFOSW5mbywgYnVja2V0KSkgewogICAgICBmb3IgKGNvbnN0IFtrZXksIHZhbF0gb2YgT2JqZWN0LmVudHJpZXModmFsdWVzKSkgewogICAgICAgIHZhbHVlc1trZXldID0gdmFsLnRvU3RyaW5nKCk7CiAgICAgIH0KICAgICAgYnVja2V0c1tidWNrZXRdID0gdmFsdWVzOwogICAgICBjb250aW51ZTsKICAgIH0KICAgIGNvbnN0IHZhbHVlc0hhdmVOZWdJbmYgPSBOdW1iZXIodmFsdWVzLm1pbikgPT09IC1JbmZpbml0eTsKICAgIGNvbnN0IHZhbHVlc0hhdmVQb3NJbmYgPSBOdW1iZXIodG90YWwubWF4KSA9PT0gSW5maW5pdHk7CiAgICB2YWx1ZXMuc3RkZXYgPSBjYWxjdWxhdGVTdGRldigKICAgICAgdmFsdWVzSGF2ZU5lZ0luZiwKICAgICAgdmFsdWVzSGF2ZVBvc0luZiwKICAgICAgdmFsdWVzLnZhcmlhbmNlLAogICAgICB2YWx1ZXMuaXRlbXMubGVuZ3RoLAogICAgKTsKCiAgICBmb3IgKGNvbnN0IFtrZXksIHZhbF0gb2YgT2JqZWN0LmVudHJpZXModmFsdWVzKSkgewogICAgICBpZiAoa2V5ID09PSAibWV0YSIpIHsKICAgICAgICBjb250aW51ZTsKICAgICAgfQogICAgICB2YWx1ZXNba2V5XSA9IHZhbC50b1N0cmluZygpOwogICAgfQogICAgLy8gY2xlYXJpbmcgbWVtb3J5CiAgICBkZWxldGUgdmFsdWVzLml0ZW1zOwogICAgZGVsZXRlIHZhbHVlcy52YXJpYW5jZTsKICAgIGJ1Y2tldHNbYnVja2V0XSA9IHZhbHVlczsKICB9CgogIGZvciAoY29uc3QgW2tleSwgdmFsdWVdIG9mIE9iamVjdC5lbnRyaWVzKHRvdGFsKSkgewogICAgaWYgKGtleSA9PT0gIm1ldGEiKSB7CiAgICAgIGNvbnRpbnVlOwogICAgfQogICAgdG90YWxba2V5XSA9IHZhbHVlLnRvU3RyaW5nKCk7CiAgfQoKICBkZWxldGUgdG90YWwuaXRlbXM7CiAgZGVsZXRlIHRvdGFsLnZhcmlhbmNlOwoKICBjb25zdCByZXN1bHQgPSB7IGNvbHVtblR5cGUsIHRvdGFsLCAuLi5idWNrZXRzIH07CiAgcG9zdFJlc3VsdChyZXN1bHQsIHRyYW5zYWN0aW9uKTsKfTsKCmNvbnN0IHBvc3RSZXN1bHQgPSAocmVzdWx0LCB0cmFuc2FjdGlvbikgPT4gewogIC8vIGhhbmRsaW5nIGluIHRlc3RzCiAgaWYgKHRoaXMubW9ja2VkUG9zdE1lc3NhZ2UpIHsKICAgIHRoaXMubW9ja2VkUG9zdE1lc3NhZ2UoeyByZXN1bHQsIHRyYW5zYWN0aW9uIH0pOwogICAgcmV0dXJuOwogIH0KICBwb3N0TWVzc2FnZSh7IHJlc3VsdCwgdHJhbnNhY3Rpb24gfSk7Cn07Cg==",poolSize:8,name:"stats"}].map((function(e){for(var t=e.template,n=e.poolSize,i=e.name,r=[],s=function(e){var n=new Worker(t),i={worker:n,busy:!1};n.onmessage=function(e){return function(e,t){var n=e.data,i=n.transaction,r=n.result,s=Re[i];t.busy=!1,s(r),delete Re[i]}(e,i)},r.push(i)},l=0;l=s.length)break;r.push(c),a=s[++l]}}catch(d){o.e(d)}finally{o.f()}return r})),e.abrupt("return",De(r).map((function(e){var t=e.content.map((function(t,n){return a[n].map((function(t){return t[e.id]}))}));return(0,s.Z)((0,s.Z)({},e),{},{content:t})})));case 9:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),Pe=function(e){return e.map((function(e,t){return e.columns.map((function(e,n){var i=e.number_of_significant_digits;return new te(i,"".concat(t,"-").concat(n))}))}))},Me=function(e,t,n){return function(n,i){var r=i.significantDigits,s=Number(n),l=n.split("."),a=(0,g.Z)(l,2),o=a[0],c=a[1];if(["sum","avg","stdev"].includes(e)){var u,d;if(B(r)&&"sum"!==e)return s.toFixed(2);var h=o.replace(/^0+/,""),f=c||"";""===h&&(f=f.replace(/^0+/,""));var p=t-(null!==(u=null===c||void 0===c?void 0:c.length)&&void 0!==u?u:0),m=r-(h.length+f.length),v=m>0,b=(null!==(d=null===c||void 0===c?void 0:c.length)&&void 0!==d?d:0)+m;if(p>0&&v&&"stdev"!==e)return p>m?s.toFixed(b):s.toFixed(t);if("avg"===e&&!v&&p<0&&"0"===n[n.length-1])return s.toFixed(t);if("stdev"===e&&v)return s.toFixed(b)}return n}},Je=function(e,t,n){var i=e.map((function(e,i){return e.map((function(e,r){var s,l={columnType:e.columnType},a=(0,f.Z)(n);try{for(a.s();!(s=a.n()).done;){var o,c=s.value,u=e[c];u&&(l[c]=u,null!==(o=null===u||void 0===u?void 0:u.sum)&&void 0!==o&&o&&t[i][r].addDataItem(u.sum))}}catch(d){a.e(d)}finally{a.f()}return l}))}));for(var r in t)for(var s in t[r])t[r][s]=t[r][s].build();return i.map((function(e,n){return e.map((function(e,i){e.columnType;var r=(0,v.Z)(e,Le),s={};if(void 0!==r.total){for(var l=0,a=Object.entries(r);l0){var s=n.map((function(e){return e.colIdx}));r?i.removeFromHiddenCols(t.toolIdx,s):i.addToHiddenCols(t.toolIdx,s)}}))},i.addToHiddenCols=function(e,t){var n=(0,l.Z)(new Set(i.state.hiddenCols[e].concat(t)));i.setHiddenColsForTool(e,n)},i.removeFromHiddenCols=function(e,t){var n=i.state.hiddenCols[e].filter((function(e){return!t.includes(e)}));i.setHiddenColsForTool(e,n)},i.handlePopState=function(){window.history.back()};var r=e.tools.map((function(e){return e.columns})).flat().filter((function(e,t,n){return t===n.findIndex((function(t){return t.display_title===e.display_title}))})).map((function(e){return e.display_title}));return i.state={isButtonOnDeselect:!0,hiddenCols:i.props.hiddenCols,selectableCols:r},i}return(0,o.Z)(n,[{key:"componentDidMount",value:function(){window.history.pushState({},"",""),window.addEventListener("popstate",this.props.close,!1)}},{key:"componentWillUnmount",value:function(){var e=this;window.removeEventListener("popstate",this.props.close,!1);var t={},n=[];Object.entries(this.state.hiddenCols).forEach((function(i){var r=(0,g.Z)(i,2),s=r[0],l=r[1],a=e.props.tools.find((function(e){return e.toolIdx===parseInt(s)})).columns;l.length===a.length?n.push(s):l.length>0?t["hidden"+s]=l.toString():t["hidden"+s]=null})),n.length>0?t.hidden=n.toString():t.hidden=null,O(t),this.props.updateParentStateOnClose()}},{key:"setHiddenColsForTool",value:function(e,t){this.setState((function(n){return{hiddenCols:(0,s.Z)((0,s.Z)({},n.hiddenCols),{},(0,b.Z)({},e,t))}}))}},{key:"render",value:function(){var e=this;ut().setAppElement(document.getElementById("root"));var t=this.props.tools.every((function(t){return t.columns.length===e.state.hiddenCols[t.toolIdx].length}));return(0,j.jsxs)(ut(),{ariaHideApp:!1,className:"overlay",isOpen:!0,onRequestClose:function(){return e.handlePopState()},children:[(0,j.jsx)("div",{className:"link-overlay-header-container",children:(0,j.jsx)(y.G,{icon:dt.YIN,onClick:function(){return e.handlePopState()},className:"closing"})}),(0,j.jsx)("h1",{children:"Select the columns to display"}),(0,j.jsx)("table",{className:"selectRows",children:(0,j.jsxs)("tbody",{children:[(0,j.jsxs)("tr",{className:"selectColumn_all",children:[(0,j.jsx)("th",{}),this.renderColumnHeaders()]}),this.renderTools()]})}),(0,j.jsxs)("div",{className:"overlay__buttons",children:[(0,j.jsx)("button",{className:"btn",onClick:this.toggleAllColsHidden,children:this.state.isButtonOnDeselect?"Deselect all":"Select all"}),(0,j.jsx)("button",{className:"btn btn-apply",onClick:function(){return e.handlePopState()},disabled:t,children:"Apply and close"}),(0,j.jsx)("input",{})]})]})}}]),n}(i.Component),ft=(n(8350),n(9468)),gt=function(e,t,n,i,r,s){return(0,j.jsxs)("div",{className:"setting".concat(s?" disabled":""),title:r,children:[(0,j.jsxs)("span",{className:"setting-label".concat(r?" with-tooltip":""),children:[e,":"]}),(0,j.jsxs)("select",{className:"setting-select",name:"setting-"+e,value:s?"disabled":t,onChange:n,disabled:s,children:[Object.values(i).map((function(t){return(0,j.jsx)("option",{value:t,name:t+" "+e,children:t},t)})),s?(0,j.jsx)("option",{value:"disabled",name:"disabled",children:"\u2e3a"}):""]})]})},pt=function(e){return(0,j.jsx)("button",{className:"setting-button",onClick:function(){return e()},children:"Reset plot"})},mt=function(e,t,n,i,r){return(0,j.jsxs)("div",{className:"setting",title:r,children:[(0,j.jsxs)("span",{className:"setting-label".concat(r?" with-tooltip":""),children:[e,":"]}),(0,j.jsx)("select",{id:"setting-"+e,className:"setting-select",name:"setting-"+e,value:t,onChange:n,children:Object.entries(i).map((function(t){var n=(0,g.Z)(t,2),i=n[0],r=n[1];return(0,j.jsx)("optgroup",{label:i,children:r.map((function(t){return(0,j.jsx)("option",{value:t.value,name:t.name+" "+e,children:t.name},t.value)}))},i)}))})]})};function vt(e,t,n){var i=[1e8,1e7,1e6,1e5,1e4].find((function(e){return t>e})),r=i?i/1e3:1;return Array(Math.ceil(t/r)).fill().map((function(e,t){return t*r})).filter((function(t){return t>=e})).map((function(e){var t=n(e);return[Number.parseFloat(t[0].toPrecision(4)),Number.parseFloat(t[1].toPrecision(4))]}))}var bt=n(4391),It=n.n(bt),Ct=function(e){(0,c.Z)(n,e);var t=(0,u.Z)(n);function n(e){var i;return(0,a.Z)(this,n),(i=t.call(this,e)).refreshUrlState=function(){i.setState(i.setup())},i.checkForNumericalSelections=function(){return"ordinal"!==i.handleType(i.state.toolY,i.state.columnY)&&"ordinal"!==i.handleType(i.state.toolX,i.state.columnX)},i.renderData=function(){var e=[];i.hasInvalidLog=!1,i.state.areAllColsHidden||i.props.table.forEach((function(t){var n=t.results[i.state.toolX],r=t.results[i.state.toolY],s=n.values[i.state.columnX].raw,l=r.values[i.state.columnY].raw,a=void 0!==s&&null!==s&&void 0!==l&&null!==l,o=i.state.results===i.resultsOptions.correct;a&&(!o||o&&"correct"===n.category&&"correct"===r.category)&&(i.state.scaling===i.scalingOptions.logarithmic&&(s<=0||l<=0)?i.hasInvalidLog=!0:e.push({x:s,y:l,info:i.props.getRowName(t)}))})),i.setMinMaxValues(e),i.lineCount=e.length,i.dataArray=e;var t=i.state.regression!==i.regressionOptions.none,n=i.checkForNumericalSelections();if(t)if(0!==i.lineCount&&n){var r=e.map((function(e){return[parseFloat(e.x),parseFloat(e.y)]})),s=It().linear(r),l=function(e,t,n,i,r){var s=function(e){return e[0]},l=function(e){return e[1]},a=function(e,t){return e+t};i=Math.floor(i),r=Math.ceil(r);var o=Math.sqrt(e.map((function(e,n){return[l(e),l(t[n])]})).map((function(e){return Math.pow(e[1]-e[0],2)})).reduce(a)/e.length),c=e.map((function(e){return s(e)})).reduce(a)/e.length,u=Math.sqrt(e.map((function(e){return Math.pow(s(e)-c,2)})).reduce(a)/e.length),d=vt(i,r,n),h=0===o||0===u?d.map((function(e){return 0})):d.map((function(t){return Number.parseFloat((1.96*o*Math.sqrt(1/e.length+Math.pow(s(t)-c,2)/((e.length-1)*Math.pow(u,2)))).toPrecision(4))}));return{upperBorderData:d.map((function(e,t){return[s(e),l(e)+h[t]]})),lowerBorderData:d.map((function(e,t){return[s(e),l(e)-h[t]]}))}}(r,s.points,s.predict,i.minX,i.maxX),a=[[i.minX,s.predict(i.minX)[1]],[i.maxX,s.predict(i.maxX)[1]]];s.points=Array.from(new Set(s.points.map(JSON.stringify)),JSON.parse).concat(a);var o=i.props.tools[i.state.toolX].columns[i.state.columnX].unit,c=i.props.tools[i.state.toolY].columns[i.state.columnY].unit,u="Estimation technique: ordinary least squares (OLS)\n Predictor variable (X-Axis) in ".concat(o,": ").concat(i.state.nameX,"\n Response variable (Y-Axis) in ").concat(c,": ").concat(i.state.nameY,"\n Regression coefficient: ").concat(s.equation[0],"\n Intercept: ").concat(s.equation[1],"\n Equation: ").concat(s.string,"\n Coefficient of Determination: ").concat(s.r2).replace(/^ +/gm,"");i.regressionData={regression:s,text:u,upperConfidenceBorderData:l.upperBorderData,lowerConfidenceBorderData:l.lowerBorderData}}else O({regression:i.regressionOptions.none})},i.setMinMaxValues=function(e){var t=e.map((function(e){return e.x})),n=e.map((function(e){return e.y}));i.maxX=i.findMaxValue(t),i.maxY=i.findMaxValue(n),i.minX=i.findMinValue(t),i.minY=i.findMinValue(n)},i.findMaxValue=function(e){var t=Math.max.apply(Math,(0,l.Z)(e));return t<3?3:t},i.findMinValue=function(e){var t=Math.min.apply(Math,(0,l.Z)(e));return t>2?1:t},i.renderRegressionLine=function(e){var t=i.prepareRegressionLineData(e);return(0,j.jsx)(ft.LU,{className:"regression-line",data:t,style:{stroke:"green"},onValueMouseOver:function(e,t){return i.setState({value:e})},onValueMouseOut:function(e,t){return i.setState({value:null})},opacity:"0"},"reg-line-"+e)},i.renderConfidenceIntervalLine=function(e,t){var n=i.prepareLineData(e);return(0,j.jsx)(ft.eh,{className:"regression-line",data:n,style:{stroke:"gray"}},"conf-line-".concat(t,"-").concat(e))},i.prepareRegressionLineData=function(e){return e.sort((function(e,t){return e[0]-t[0]})).map((function(e,t){var n=Math.round(100*i.regressionData.lowerConfidenceBorderData[t][1])/100,r=Math.round(100*i.regressionData.upperConfidenceBorderData[t][1])/100;return{x:e[0],y:e[1],"95% Confidence Interval":"[".concat(n,",").concat(r,"]")}})).sort((function(e,t){return e.x-t.x}))},i.prepareLineData=function(e){return e.map((function(e){return{x:e[0],y:e[1]}})).sort((function(e,t){return e.x-t.x}))},i.handleType=function(e,t){var n=i.props.tools[e].columns[t].type;return"text"===n||"status"===n?"ordinal":i.state.scaling===i.scalingOptions.logarithmic?"log":"linear"},i.extractAxisInfoByName=function(e,t){var n,r=e.split("-"),s=(0,g.Z)(r,2),l=s[0],a=s[1];return n={},(0,b.Z)(n,"data".concat(t),e),(0,b.Z)(n,"tool".concat(t),l),(0,b.Z)(n,"column".concat(t),a),(0,b.Z)(n,"name".concat(t),i.props.tools[l].columns.find((function(e){return e.colIdx===parseInt(a)})).display_title+" ("+H(i.props.tools[l])+")"),n},i.setAxis=function(e,t){var n;i.array=[];var r=e.target.value.split("-"),s=(0,g.Z)(r,2),l=s[0],a=s[1];a=a.replace("___","-"),O((n={},(0,b.Z)(n,"tool".concat(t),l),(0,b.Z)(n,"column".concat(t),a),n))},i.swapAxes=function(){i.array=[],O({toolX:i.state.toolY,toolY:i.state.toolX,columnX:i.state.columnY,columnY:i.state.columnX})},i.scalingOptions={linear:"Linear",logarithmic:"Logarithmic"},i.resultsOptions={all:"All",correct:"Correct only"},i.regressionOptions={none:"None",linear:"Linear"},i.lineOptgroupOptions={"f(x) = cx and f(x) = x/c":[{name:"c = 1.1",value:1.1},{name:"c = 1.2",value:1.2},{name:"c = 1.5",value:1.5},{name:"c = 2",value:2},{name:"c = 3",value:3},{name:"c = 4",value:4},{name:"c = 5",value:5},{name:"c = 6",value:6},{name:"c = 7",value:7},{name:"c = 8",value:8},{name:"c = 9",value:9},{name:"c = 10",value:10},{name:"c = 100",value:100},{name:"c = 1000",value:1e3},{name:"c = 10000",value:1e4},{name:"c = 100000",value:1e5},{name:"c = 1000000",value:1e6}]},i.defaultValues={scaling:i.scalingOptions.logarithmic,results:i.resultsOptions.correct,regression:i.regressionOptions.none,line:Object.values(i.lineOptgroupOptions)[0][11].value},i.state=i.setup(),i.maxX="",i.minX="",i.lineCount=1,i}return(0,o.Z)(n,[{key:"setup",value:function(){var e,t,n,i=H(this.props.tools[0])+" "+this.props.columns[0][1],r=(0,s.Z)((0,s.Z)({},this.defaultValues),X()),l=r.results,a=r.scaling,o=r.toolX,c=r.toolY,u=r.columnX,d=r.columnY,h=r.line,f=r.regression;if(B(o)||B(u)){var p=ie(this.props.tools,this.props.hiddenCols),m=(0,g.Z)(p,2),v=m[0],b=m[1];n=void 0===v,o=v,e="".concat(v,"-").concat(b)}else n=!1,e="".concat(o,"-").concat(u);if(B(c)||B(d)){var I=ie(this.props.tools,this.props.hiddenCols),C=(0,g.Z)(I,2),x=C[0],y=C[1];n=void 0===x,c=x,t="".concat(x,"-").concat(y)}else n=!1,t="".concat(c,"-").concat(d);var Z={dataX:e,dataY:t,results:l,scaling:a,regression:f,toolX:0,toolY:0,line:h,columnX:1,columnY:1,nameX:i,nameY:i,value:!1,areAllColsHidden:n};return e&&!n&&(Z=(0,s.Z)((0,s.Z)({},Z),this.extractAxisInfoByName(e,"X"))),t&&!n&&(Z=(0,s.Z)((0,s.Z)({},Z),this.extractAxisInfoByName(t,"Y"))),Z}},{key:"componentDidMount",value:function(){window.addEventListener("popstate",this.refreshUrlState)}},{key:"componentWillUnmount",value:function(){window.removeEventListener("popstate",this.refreshUrlState)}},{key:"renderAllSettings",value:function(){var e=this,t=this.props.tools.reduce((function(t,n,i){return Object.assign(t,(0,b.Z)({},H(n),n.columns.filter((function(t){return!e.props.hiddenCols[i].includes(t.colIdx)})).map((function(e,t){return{name:e.display_title,value:i+"-"+e.colIdx}}))))}),{});return(0,j.jsx)("div",{className:"settings-container",children:(0,j.jsxs)("div",{className:"settings-border-container",children:[(0,j.jsxs)("div",{className:"settings-subcontainer flexible-width",children:[mt("X-Axis",this.state.dataX,(function(t){return e.setAxis(t,"X")}),t),(0,j.jsx)("span",{className:"setting icon",children:(0,j.jsx)(y.G,{icon:dt.Ssp,onClick:function(){return e.swapAxes()}})}),mt("Y-Axis",this.state.dataY,(function(t){return e.setAxis(t,"Y")}),t)]}),(0,j.jsxs)("div",{className:"settings-subcontainer",children:[gt("Scaling",this.state.scaling,(function(e){return O({scaling:e.target.value})}),this.scalingOptions),gt("Results",this.state.results,(function(e){return O({results:e.target.value})}),this.resultsOptions,"In addition to which results are selected here, any filters will still be applied."),(0,j.jsx)("div",{className:"settings-subcontainer",children:mt("Aux. Lines",this.state.line,(function(e){return O({line:e.target.value})}),this.lineOptgroupOptions,"Adds the two auxiliary lines f(x) = cx and f(x) = x/c to the plot, with c being the chosen factor in the dropdown.")})]}),(0,j.jsxs)("div",{className:"settings-subcontainer",children:[gt("Regression",this.state.regression,(function(t){e.checkForNumericalSelections()?O({regression:t.target.value}):alert("Regressions are only available for numerical selections.")}),this.regressionOptions,this.state.regression!==this.regressionOptions.none&&this.regressionData?this.regressionData.text:void 0),pt((function(){return O({columnX:null,columnY:null,line:null,regression:null,results:null,scaling:null,toolX:null,toolY:null})}))]})]})})}},{key:"renderRegressionAndConfidenceIntervals",value:function(){var e=vt(Math.floor(this.minX),Math.ceil(this.maxX),this.regressionData.regression.predict);return[this.renderConfidenceIntervalLine(this.regressionData.upperConfidenceBorderData,"upper"),this.renderConfidenceIntervalLine(this.regressionData.lowerConfidenceBorderData,"lower"),this.renderRegressionLine(e)]}},{key:"render",value:function(){var e=this;this.renderData();var t=this.state.scaling===this.scalingOptions.linear,n=this.props.isFlexible?ft.wu:ft.dp,i=this.props.isFlexible?{height:window.innerHeight-200}:{height:1e3,width:1500},r=this.maxX>this.maxY?this.maxX:this.maxY;return(0,j.jsxs)("div",{className:"scatterPlot",children:[!this.state.areAllColsHidden&&this.renderAllSettings(),(0,j.jsxs)(n,(0,s.Z)((0,s.Z)({className:"scatterPlot__plot",margin:{left:90},yType:this.handleType(this.state.toolY,this.state.columnY),xType:this.handleType(this.state.toolX,this.state.columnX),xDomain:"ordinal"!==this.handleType(this.state.toolX,this.state.columnX)?[this.minX,this.maxX]:null,yDomain:"ordinal"!==this.handleType(this.state.toolY,this.state.columnY)?[this.minY,this.maxY]:null},i),{},{children:[(0,j.jsx)(ft.pW,{yType:this.handleType(this.state.toolY,this.state.columnY),xType:this.handleType(this.state.toolX,this.state.columnX)}),(0,j.jsx)(ft.xL,{yType:this.handleType(this.state.toolY,this.state.columnY),xType:this.handleType(this.state.toolX,this.state.columnX)}),(0,j.jsx)(ft.Ci,{className:"middle-line",axisStart:{x:t?0:1,y:t?0:1},axisEnd:{x:r,y:r},axisDomain:[0,1e10],style:{ticks:{stroke:"#009440",opacity:0},text:{stroke:"none",fill:"#009440",fontWeight:600,opacity:0}}}),(0,j.jsx)(ft.Ci,{axisStart:{x:t?0:this.state.line,y:t?0:1},axisEnd:{x:this.maxX,y:this.maxX/this.state.line},axisDomain:[0,1e10],style:{ticks:{stroke:"#ADDDE1",opacity:0},text:{stroke:"none",fill:"#6b6b76",fontWeight:600,opacity:0}}}),(0,j.jsx)(ft.Ci,{axisStart:{x:t?0:1,y:t?0:this.state.line},axisEnd:{x:this.maxX,y:this.maxX*this.state.line},axisDomain:[0,1e10],style:{ticks:{stroke:"#ADDDE1",opacity:0},text:{stroke:"none",fill:"#6b6b76",fontWeight:600,opacity:0}}}),(0,j.jsx)(ft.Kc,{title:this.state.nameX,tickFormat:function(e){return e},yType:this.handleType(this.state.toolY,this.state.columnY),xType:this.handleType(this.state.toolX,this.state.columnX)}),(0,j.jsx)(ft.B2,{title:this.state.nameY,tickFormat:function(e){return e},yType:this.handleType(this.state.toolY,this.state.columnY),xType:this.handleType(this.state.toolX,this.state.columnX)}),(0,j.jsx)(ft.e9,{data:this.dataArray,onValueMouseOver:function(t,n){return e.setState({value:t})},onValueMouseOut:function(t,n){return e.setState({value:null})}}),this.state.regression!==this.regressionOptions.none&&this.checkForNumericalSelections()&&this.regressionData&&0!==this.lineCount&&this.renderRegressionAndConfidenceIntervals(),this.state.value?(0,j.jsx)(ft.kW,{value:this.state.value}):null]})),this.state.areAllColsHidden?(0,j.jsx)("div",{className:"plot__noresults",children:"No columns to show!"}):0===this.lineCount&&(0,j.jsxs)("div",{className:"plot__noresults",children:["No"," ",this.state.results===this.resultsOptions.correct&&"correct"," ","results",this.props.table.length>0&&" with valid data points",this.hasInvalidLog&&" (negative values are not shown in logarithmic plot)"]})]})}}]),n}(i.Component),xt=function(e){(0,c.Z)(n,e);var t=(0,u.Z)(n);function n(e){var i;return(0,a.Z)(this,n),(i=t.call(this,e)).isColRelevantForTool=function(e,t){return i.isColVisible(t,e)&&"text"!==e.type&&"status"!==e.type},i.isToolRelevantForCol=function(e,t){var n=e.columns.find((function(e){return e.display_title===t}));return i.isToolVisible(e)&&n&&i.isColVisible(e.toolIdx,n.colIdx)},i.isColVisibleInAnyTool=function(e){return i.props.tools.some((function(t){return t.columns.some((function(n){return n.colIdx===e.colIdx&&i.isColVisible(t.toolIdx,n.colIdx)}))}))},i.isInVisibleRunsetSupportingScore=function(e){return i.props.tools.filter((function(e){return i.isToolVisible(e)})).some((function(t){return t.scoreBased&&t.columns.some((function(t){return t.display_title===e}))}))},i.isToolVisible=function(e){return e.columns.length!==i.props.hiddenCols[e.toolIdx].length},i.isColVisible=function(e,t){return!i.props.hiddenCols[e].includes(t)},i.updateDimensions=function(){i.setState({height:window.innerHeight})},i.refreshUrlState=function(){i.setState(i.setPlotData())},i.renderLegend=function(){if(i.state.isValue)return i.props.tools.filter((function(e){return i.isToolRelevantForCol(e,i.state.selection)})).map(H).map((function(e){return{title:e,disabled:i.state.isInvisible.some((function(t){return t===e})),strokeWidth:4}}));var e=i.props.tools[i.state.selection.split("-")[1]];return i.state.areAllColsHidden?[]:e.columns.filter((function(t){return i.isColRelevantForTool(t.colIdx,e.toolIdx)})).map((function(e){return{title:e.display_title,disabled:i.state.isInvisible.some((function(t){return t===e.display_title})),strokeWidth:4}}))},i.renderAll=function(){var e=i.state.selection;if(i.state.isValue){var t=i.state.plot===i.plotOptions.scoreBased?i.props.tools.filter((function(e){return e.scoreBased})):i.props.tools;t.forEach((function(t){return i.renderData(e,t.toolIdx,e+t.toolIdx)}))}else if(!i.state.areAllColsHidden){var n=i.state.selection.split("-")[1],r=i.props.tools[n];r.columns.filter((function(e){return i.isColRelevantForTool(e.colIdx,r.toolIdx)&&i.isColVisible(r.toolIdx,e.colIdx)})).forEach((function(e){return i.renderData(e.display_title,n,e.display_title)}))}},i.renderData=function(e,t,n){var r=i.state.plot===i.plotOptions.scoreBased,s="ordinal"===i.handleType(),l=i.props.tools[t].columns.findIndex((function(t){return t.display_title===e})),a=[],o=0;(!i.state.isValue||l>=0&&i.isColVisible(t,l))&&(a=i.props.table.map((function(e){var n=e.results[t],a=null;return"correct"===n.category||!i.state.isResultSelectionDisabled&&i.state.results!==i.resultsOptions.correct?(a=n.values[l].raw||null,s||null===a||(a=isFinite(+a)?+a:null)):r&&n.score&&"correct"!==n.category&&(o+=n.score),{value:a,rowName:i.props.getRowName(e),score:n.score}})),i.state.plot!==i.plotOptions.direct&&(a=a.filter((function(e){return null!==e.value})),a=i.sortArray(a,e))),i.hasInvalidLog=!1;var c=[],u=r?o:0;a.forEach((function(n){var s=n.value,l=n.rowName,a=n.score,o=i.state.scaling===i.scalingOptions.logarithmic&&s<=0;u+=r?a:1,null===s||o||c.push({x:u,y:s,task:l,series:i.state.isValue?H(i.props.tools[t]):e}),o&&(i.hasInvalidLog=!0)})),i[n]=c},i.sortArray=function(e,t){var n=i.possibleValues.find((function(e){return e.display_title===t}));return i.state.isValue&&["text","status"].includes(n.type)?e.sort((function(e,t){return e.value>t.value?1:t.value>e.value?-1:0})):e.sort((function(e,t){return+e.value-+t.value}))},i.renderColumns=function(){return i.possibleValues.map((function(e){var t=i.state.plot===i.plotOptions.scoreBased&&!i.isInVisibleRunsetSupportingScore(e.display_title);return(0,j.jsx)("option",{value:e.display_title,name:e.display_title,disabled:t,className:t?"disabled":"",children:e.display_title},e.display_title)}))},i.renderLines=function(){i.lineCount=0;var e=function(){return T[(i.lineCount-1)%T.length]};if(i.state.isValue)return i.props.tools.map((function(t,n){if(!i.isToolRelevantForCol(t,i.state.selection)||i.state.plot===i.plotOptions.scoreBased&&!t.scoreBased)return null;var r=i.state.selection,s=i[r+n],l=H(t);return i.lineCount++,(0,j.jsx)(ft.LU,{data:s,color:e(),opacity:i.handleLineState(l),onValueMouseOver:function(e,t){return i.setState({value:e})},onValueMouseOut:function(e,t){return i.setState({value:null})}},l)})).filter((function(e){return!!e}));if(!i.state.areAllColsHidden){var t=i.state.selection.split("-")[1],n=i.props.tools[t];return n.columns.filter((function(e){return i.isColRelevantForTool(e.colIdx,n.toolIdx)})).map((function(t){var n=i[t.display_title];return i.lineCount++,(0,j.jsx)(ft.LU,{data:n,color:e(),opacity:i.handleLineState(t.display_title),onValueMouseOver:function(e,t){return i.setState({value:e})},onValueMouseOut:function(e,t){return i.setState({value:null})}},t.display_title)}))}},i.handleLineState=function(e){return i.state.isInvisible.indexOf(e)<0?1:0},i.toggleShow=function(e){var t=e.target;i.setState((0,b.Z)({},t.name,t.checked))},i.handleType=function(){var e=i.state.selection,t=i.possibleValues.findIndex((function(t){return t.display_title===e})),n=i.state.isValue&&t>=0?i.possibleValues[t].type:null;return!i.state.isValue||"text"!==n&&"status"!==n?i.state.scaling===i.scalingOptions.linear?"linear":"log":"ordinal"},i.plotOptions={quantile:"Quantile Plot",direct:"Direct Plot"},i.scalingOptions={linear:"Linear",logarithmic:"Logarithmic"},i.resultsOptions={all:"All",correct:"Correct only"},i.defaultValues={plot:i.plotOptions.quantile,scaling:i.scalingOptions.logarithmic,results:i.resultsOptions.correct},i.checkForScoreBasedPlot(),i.possibleValues=[],i.lineCount=1,i.state=i.setPlotData(),i}return(0,o.Z)(n,[{key:"setPlotData",value:function(){var e=this,t=X(),n=(0,s.Z)((0,s.Z)({},this.defaultValues),t),i=n.selection,r=n.plot,l=n.scaling,a=n.results,o=i,c=this.props.tools.map((function(e){return e.toolIdx})).join(""),u=new RegExp("runset-["+c+"]"),d=void 0===i||!u.test(i);if(i=d?this.getColumnSelection(i):this.getRunsetSelection(i),r===this.plotOptions.scoreBased&&(d&&!this.isInVisibleRunsetSupportingScore(i)||!d)){this.setPossibleValues();var h=this.possibleValues.find((function(t){return"status"!==t.type&&e.isInVisibleRunsetSupportingScore(t.display_title)}));h||(h=this.possibleValues.find((function(t){return e.isInVisibleRunsetSupportingScore(t.display_title)}))),i=h?h.display_title:i,d=!0}return o&&i&&o!==i&&O({selection:i}),{selection:i,plot:r,scaling:l,results:a,isValue:d,isInvisible:[],areAllColsHidden:void 0===i,isResultSelectionDisabled:r===this.plotOptions.scoreBased}}},{key:"getColumnSelection",value:function(e){var t=e?this.props.tools.map((function(e){return e.columns})).flat().find((function(t){return t.display_title===e})):this.props.preSelection;if(!t||!this.isColVisibleInAnyTool(t)){var n=ie(this.props.tools,this.props.hiddenCols),i=(0,g.Z)(n,2),r=i[0],s=i[1];t=void 0!==r?this.props.tools.find((function(e){return e.toolIdx===r})).columns.find((function(e){return e.colIdx===s})):void 0}return t&&t.display_title}},{key:"getRunsetSelection",value:function(e){var t=this,n=parseInt(e.split("-")[1]);return this.props.tools.find((function(e){return e.toolIdx===n})).columns.some((function(e){return t.isColVisible(n,e.colIdx)}))||(n=ie(this.props.tools,this.props.hiddenCols)[0]),void 0!==n?"runset-"+n:void 0}},{key:"checkForScoreBasedPlot",value:function(){var e=this;this.props.tools.some((function(t){return t.scoreBased&&e.isToolVisible(t)}))&&(this.plotOptions=(0,s.Z)({scoreBased:"Score-based Quantile Plot"},this.plotOptions),this.props.tools.every((function(t){return t.scoreBased&&e.isToolVisible(t)}))&&(this.defaultValues.plot=this.plotOptions.scoreBased))}},{key:"componentDidMount",value:function(){window.addEventListener("resize",this.updateDimensions),window.addEventListener("popstate",this.refreshUrlState)}},{key:"componentWillUnmount",value:function(){window.removeEventListener("resize",this.updateDimensions),window.removeEventListener("popstate",this.refreshUrlState)}},{key:"setPossibleValues",value:function(){var e=this;this.props.tools.forEach((function(t){t.columns.forEach((function(n){e.isColVisible(t.toolIdx,n.colIdx)&&!e.possibleValues.some((function(e){return e.display_title===n.display_title}))&&e.possibleValues.push(n)}))}))}},{key:"renderAllSettings",value:function(){var e=this,t=this.state.plot===this.plotOptions.scoreBased?"Score-based Quantile Plots always show correct results offset by the score of wrong results. Any defined filters will still be applied.":"In addition to which results are selected here, any defined filters will still be applied.";return(0,j.jsxs)("div",{className:"settings-legend-container",children:[(0,j.jsx)("div",{className:"settings-container",children:(0,j.jsxs)("div",{className:"settings-border-container",children:[(0,j.jsxs)("div",{className:"settings-subcontainer flexible-width",children:[(0,j.jsxs)("div",{className:"setting flexible-width",children:[(0,j.jsx)("span",{className:"setting-label",children:"Selection:"}),(0,j.jsxs)("select",{className:"setting-select",name:"setting-Selection",value:this.state.selection,onChange:function(e){return O({selection:e.target.value})},children:[(0,j.jsx)("optgroup",{label:"Runsets",children:this.props.tools.map((function(t,n){var i=e.state.plot===e.plotOptions.scoreBased;return e.isToolVisible(t)?(0,j.jsx)("option",{value:"runset-"+n,name:"Runset "+n,disabled:i,className:i?"disabled":"",children:H(t)},"runset-"+n):null}))}),(0,j.jsx)("optgroup",{label:"Columns",children:this.renderColumns()})]})]}),gt("Plot",this.state.plot,(function(e){return O({plot:e.target.value})}),this.plotOptions)]}),(0,j.jsxs)("div",{className:"settings-subcontainer",children:[gt("Scaling",this.state.scaling,(function(e){return O({scaling:e.target.value})}),this.scalingOptions),gt("Results",this.state.results,(function(e){return O({results:e.target.value})}),this.resultsOptions,t,this.state.isResultSelectionDisabled),pt((function(){return O({selection:null,plot:null,scaling:null,results:null})}))]})]})}),(0,j.jsx)("div",{children:(0,j.jsx)(ft.Ri,{colors:T,items:this.renderLegend(),onItemClick:function(t,n){var i;if(i=t.title.toString(),!(e.state.isInvisible.indexOf(i)<0))return e.setState({isInvisible:e.state.isInvisible.filter((function(e){return e!==i}))});e.setState({isInvisible:e.state.isInvisible.concat([i])})}})})]})}},{key:"render",value:function(){this.setPossibleValues(),this.renderAll();var e=this.props.isFlexible?ft.wu:ft.dp,t=this.props.isFlexible?{height:window.innerHeight-200}:{height:1e3,width:1500};return(0,j.jsxs)("div",{className:"quantilePlot",children:[!this.state.areAllColsHidden&&this.renderAllSettings(),(0,j.jsxs)(e,(0,s.Z)((0,s.Z)({margin:{left:90},yType:this.handleType()},t),{},{children:[(0,j.jsx)(ft.pW,{}),(0,j.jsx)(ft.xL,{}),(0,j.jsx)(ft.Kc,{tickFormat:function(e){return e}}),(0,j.jsx)(ft.B2,{tickFormat:function(e){return e}}),this.state.value?(0,j.jsx)(ft.kW,{value:this.state.value}):null,this.renderLines()]})),this.state.areAllColsHidden?(0,j.jsx)("div",{className:"plot__noresults",children:"No columns to show!"}):0===this.lineCount&&(0,j.jsx)("div",{className:"plot__noresults",children:this.hasInvalidLog?"All results have undefined values":"No correct results"})]})}}]),n}(i.Component),yt=n(3014),Zt=(n(8995),(0,yt.u7)(yt.ZP.Range)),jt=500,Ft=setTimeout((function(){}),jt),At=function(e){(0,c.Z)(n,e);var t=(0,u.Z)(n);function n(e){var i;(0,a.Z)(this,n),i=t.call(this,e);var r=e.filter||{values:[]},s=r.values,l=r.min,o=r.max,c=r.type,u=r.number_of_significant_digits,d=0,h=0;if("measure"===c||"number"===c){var f=new te(u).build();d=f(l),h=f(o);var g=s&&s[0];if(g&&g.includes(":")){var p=i.handleMinMaxValue(g,u);d=p.min,h=p.max}}return i.state={title:e.availableFilters&&e.availableFilters.length?e.availableFilters[0].title:"",values:[],idx:k(["availableFilters",0,"idx"],0,e),active:!0,selectedDistincts:[],sliderMin:d,sliderMax:h,numericMin:null,numericMax:null},i}return(0,o.Z)(n,[{key:"sendFilterUpdate",value:function(e){var t=this.props.filter,n=t.type,i=t.categories;i&&i.includes("empty ")&&!e.includes(Fe)&&(e=e.concat(Fe)),0===e.length&&"status"===n?this.props.onFilterUpdate({values:[N],title:this.state.title||this.props.title}):this.props.onFilterUpdate({values:e,title:this.state.title||this.props.title})}},{key:"componentDidUpdate",value:function(e,t){if(this.props.filter&&(!e.filter||e.filter.values!==this.props.filter.values)){var n=this.props.filter,i=n.values,r=n.number_of_significant_digits,s=(0,g.Z)(i,1)[0];if(s&&s.includes(":")){var l=this.handleMinMaxValue(s,r),a=l.min,o=l.max;this.setState({sliderMin:a,sliderMax:o,numericMin:a,numericMax:o})}}}},{key:"handleMinMaxValue",value:function(e,t){var n=new te(t).build(),i=this.props.filter||{min:0,max:1/0},r=i.min,s=i.max,l=e.split(":"),a=(0,g.Z)(l,2),o=a[0],c=a[1];return{min:""!==o.trim()?o:n(r),max:""!==c.trim()?c:n(s)}}},{key:"handleNumberChange",value:function(e,t){var n,i,r={};if(r.sliderMin=Number(null!==(n=this.state.numericMin)&&void 0!==n?n:this.state.sliderMin),r.sliderMax=Number(null!==(i=this.state.numericMax)&&void 0!==i?i:this.state.sliderMax),r.sliderMin>r.sliderMax){var s=r.sliderMax;r.sliderMax=r.sliderMin,r.sliderMin=s}var l=r.sliderMin<=Number(e)?"":r.sliderMin,a=r.sliderMax>=Number(t)?"":r.sliderMax;r.values=["".concat(l,":").concat(a)],this.setState(r),this.sendFilterUpdate(r.values)}},{key:"render",value:function(){var e=this,t=this.props,n=t.filter,r=t.editable,s=t.availableFilters,a=i.createRef();return(0,j.jsxs)("div",{className:"filter-card",children:[function(t,i){return(0,j.jsx)("div",{className:"filter-card--header",children:i?(0,j.jsxs)(j.Fragment,{children:[(0,j.jsx)("span",{style:{marginLeft:"12px"},children:"Add filter for: "}),(0,j.jsxs)("select",{className:"filter-selection",defaultValue:"-1",ref:a,onChange:function(t){var n=t.target.value;-1!==n&&(e.setState({idx:-1,active:!0}),a.current.value="-1",e.props.addFilter(n))},children:[(0,j.jsx)("option",{value:"-1",disabled:!0,children:"Column"}),s.map((function(e){var t=e.idx,n=e.display_title;return(0,j.jsx)("option",{value:t,children:n},t)}))]})]}):(0,j.jsxs)(j.Fragment,{children:[(0,j.jsx)("h4",{className:"title",children:"".concat(n.display_title," ").concat(n.unit?"("+n.unit+")":"")}),(0,j.jsx)(y.G,{className:"delete-button",icon:dt.$aW,onClick:function(){e.props.removeFilter()}})]})})}(this.props.name,r),function(t){if(!t)return null;var n,r=t.title,s=t.type,a=t.number_of_significant_digits,o=t.categories,c=t.statuses,u=t.values,d=void 0===u?[]:u,h=t.min,f=t.max,p=i.createRef();if("status"===s)n=(0,j.jsxs)(j.Fragment,{children:[e.props.filter.categories&&e.props.filter.categories.includes("empty ")&&(0,j.jsxs)("div",{className:"filter-card--body--empty-rows",children:["Empty rows"," ",(0,j.jsx)("input",{type:"checkbox",name:"empty-rows",ref:p,checked:d.includes("empty "),onChange:function(t){var n="empty ";if(t.target.checked){var i=[].concat((0,l.Z)(d),[n]);e.setState({values:i}),e.sendFilterUpdate(i)}else{var r=S(n,d);e.setState({values:r}),e.sendFilterUpdate(r)}}})]}),"Category",(0,j.jsx)("ul",{className:"filter-card--body--list",children:o.filter((function(e){return"empty "!==e})).sort().map((function(t){var n=i.createRef();return(0,j.jsxs)("li",{children:[(0,j.jsx)("input",{type:"checkbox",name:"cat-".concat(t),checked:d.includes(t),ref:n,onChange:function(n){if(n.target.checked){var i=[].concat((0,l.Z)(d),[t]);e.setState({values:i}),e.sendFilterUpdate(i)}else{var r=S(t,d);e.setState({values:r}),e.sendFilterUpdate(r)}}}),(0,j.jsx)("label",{htmlFor:"cat-".concat(t),onClick:function(){return n.current.click()},className:t,children:t})]},t)}))}),"Status",(0,j.jsx)("ul",{className:"filter-card--body--list",children:c.sort().map((function(t){var n=i.createRef();return(0,j.jsxs)("li",{children:[(0,j.jsx)("input",{type:"checkbox",name:"stat-".concat(t),ref:n,checked:d.includes(t),onChange:function(n){if(n.target.checked){var i=[].concat((0,l.Z)(d),[t]);e.setState({values:i}),e.sendFilterUpdate(i)}else{var r=S(t,d);e.setState({values:r}),e.sendFilterUpdate(r)}}}),(0,j.jsx)("label",{htmlFor:"stat-".concat(t),onClick:function(){return n.current.click()},children:t})]},t)}))})]});else if("text"===s){var m=(0,g.Z)(d,1)[0];n=(0,j.jsx)("input",{type:"text",name:"text-".concat(r),placeholder:"Search for value",value:m,onChange:function(t){var n=t.target.value;clearTimeout(Ft),e.setState({values:[n]}),Ft=setTimeout((function(){e.sendFilterUpdate([n])}),jt)}})}else{var v=new te(a).build();h=v(h),f=v(f);var b=se(h),I=se(f),C=b.length>I.length?b:I;n=(0,j.jsxs)(j.Fragment,{children:[(0,j.jsxs)("div",{className:"filter-card--range-container",children:[(0,j.jsx)("b",{children:h}),(0,j.jsx)("b",{children:f})]}),(0,j.jsx)(Zt,{min:Number(h),max:Number(f),step:C,defaultValue:[Number(h),Number(f)],value:[Number(e.state.sliderMin),Number(e.state.sliderMax)],onChange:function(t){var n=(0,g.Z)(t,2),i=n[0],r=n[1];e.setState({sliderMin:v(i),sliderMax:v(r)})},onAfterChange:function(t){var n=(0,g.Z)(t,2),i=n[0],r=n[1],s=v(i),l=v(r),a=s===h?"":s,o=l===f?"":l;e.setState({sliderMin:s,sliderMax:l,numericMin:i,numericMax:r,values:["".concat(a,":").concat(o)]}),e.sendFilterUpdate(["".concat(a,":").concat(o)])}}),(0,j.jsxs)("div",{className:"filter-card--range-input-fields",children:[(0,j.jsx)("label",{className:"range-input-fields--min",htmlFor:"inp-".concat(r,"-min"),children:"minimum"}),(0,j.jsx)("label",{className:"range-input-fields--max",htmlFor:"inp-".concat(r,"-max"),children:"maximum"}),(0,j.jsx)("input",{type:"number",name:"inp-".concat(r,"-min"),value:null!==e.state.numericMin?e.state.numericMin:e.state.sliderMin,lang:"en-US",step:C,onChange:function(t){var n=t.target.value;e.numericMinTimeout&&clearTimeout(e.numericMinTimeout),e.setState({numericMin:n}),e.numericMinTimeout=setTimeout((function(){return e.handleNumberChange(h,f)}),jt)}}),(0,j.jsx)("input",{type:"number",name:"inp-".concat(r,"-max"),step:C,lang:"en-US",value:null!==e.state.numericMax?e.state.numericMax:e.state.sliderMax,onChange:function(t){var n=t.target.value;e.numericMaxTimeout&&clearTimeout(e.numericMaxTimeout),e.setState({numericMax:n}),e.numericMaxTimeout=setTimeout((function(){return e.handleNumberChange(h,f)}),jt)}})]})]})}return(0,j.jsx)("div",{className:"filter-card--body",children:n})}(this.props.filter)]})}}]),n}(i.PureComponent),Nt=function(e){(0,c.Z)(n,e);var t=(0,u.Z)(n);function n(e){var i;(0,a.Z)(this,n),i=t.call(this,e);var r=e.filters,l=e.toolName,o=e.currentFilters;for(var c in o)r[c]=(0,s.Z)((0,s.Z)((0,s.Z)({},r[c]),o[c]),{},{touched:r[c].touched+1,filtering:!0});return i.props.resetFilterHook((function(){return i.resetAllFilters()})),i.state={filters:r,toolName:l,addingFilter:!1,numCards:0},i}return(0,o.Z)(n,[{key:"getActiveFilters",value:function(){return this.state.filters.filter((function(e){return e.filtering})).sort((function(e,t){return e.numCards-t.numCards}))}},{key:"setFilter",value:function(e,t){var n=e.title,i=e.values,r=e.filtering,s=void 0===r||r,a=this.state.filters;a[t].values=i,a[t].filtering=s,a[t].touched+=1,this.setState({filters:(0,l.Z)(a)}),this.props.updateFilters({title:n,values:i},t)}},{key:"addFilter",value:function(e){var t=this.state,n=t.filters,i=t.numCards,r={filtering:!0,numCards:i,touched:0};"status"===n[e].type&&(r.values=[].concat((0,l.Z)(n[e].categories),(0,l.Z)(n[e].statuses))),n[e]=(0,s.Z)((0,s.Z)({},n[e]),r),this.setState({filters:n,addingFilter:!1,numCards:i+1})}},{key:"resetAllFilters",value:function(){var e=this.state.filters.filter((function(e){return e.filtering})),t=this.state.filters.map((function(e){return(0,s.Z)((0,s.Z)({},e),{},{filtering:!1,values:[]})}));this.setState({filters:(0,l.Z)(t)});var n,i=(0,f.Z)(e);try{for(i.s();!(n=i.n()).done;){var r=n.value;r.values&&this.props.updateFilters({title:r.display_title,values:[]},r.idx)}}catch(a){i.e(a)}finally{i.f()}}},{key:"removeFilter",value:function(e,t){var n=this.state.filters;n[e].filtering=!1,n[e].values=[],this.setState({filters:(0,l.Z)(n)}),this.props.updateFilters({title:t,values:[]},e)}},{key:"componentDidUpdate",value:function(e){var t=e.currentFilters,n=this.props.currentFilters;if(!be()(t,n)){var i=this.state.filters;for(var r in n)i[r]=(0,s.Z)((0,s.Z)((0,s.Z)({},i[r]),n[r]),{},{touched:i[r].touched+1,filtering:!0});i=i.map((function(e,t){var i=!(!n[t]&&0!==e.touched);return(0,s.Z)((0,s.Z)({},e),{},{filtering:i,values:i?e.values:[]})})),this.setState({filters:(0,l.Z)(i)})}}},{key:"render",value:function(){var e=this,t=this.getActiveFilters(),n=this.props.hiddenCols||[],i=this.state.filters.filter((function(e,t){return!e.filtering&&!n.includes(t)}));return(0,j.jsxs)("div",{className:"filterBox--container",children:[(0,j.jsx)("h4",{className:"section-header",children:this.state.toolName}),t.length>0&&t.map((function(t,n){return(0,j.jsx)(At,{onFilterUpdate:function(n){return e.setFilter(n,t.idx)},title:t.display_title,removeFilter:function(){return e.removeFilter(t.idx,t.display_title)},filter:t},"".concat(e.props.toolName,"-").concat(t.display_title,"-").concat(t.numCards))})),i.length&&(0,j.jsx)(At,{availableFilters:i,editable:"true",style:{marginBottom:20},addFilter:function(t){return e.addFilter(t)},onFilterUpdate:function(t){return e.setFilter(t)}})||void 0,(0,j.jsx)("br",{})]})}}]),n}(i.PureComponent),Wt=setTimeout((function(){}),500),Bt=function(e){(0,c.Z)(n,e);var t=(0,u.Z)(n);function n(e){var i;return(0,a.Z)(this,n),(i=t.call(this,e)).state={values:i.extractFilters()},e.resetFilterHook((function(){return i.resetIdFilters()})),i}return(0,o.Z)(n,[{key:"resetIdFilters",value:function(){this.setState({values:{}}),this.sendFilterUpdate({})}},{key:"sendFilterUpdate",value:function(e){this.props.updateFilters(e)}},{key:"extractFilters",value:function(){for(var e=0,t={},n=0,i=Object.keys(this.props.ids);n0&&i.push({id:"id",values:n}),this.props.addTypeToFilter(i),this.props.setFilter(i,!0)}},{key:"updateFilters",value:function(e,t,n){var i=(0,l.Z)(this.state.filters),r=this.state.idFilters;i[e]=i[e]||[],i[e][t]=n,this.setState({filters:i}),this.sendFilters({filter:i,idFilter:r})}},{key:"updateIdFilters",value:function(e){var t=Object.keys(this.props.ids).map((function(t){return e[t]})),n=t.some((function(e){return""!==e&&!B(e)}))?t:void 0;this.setState({idFilters:n}),this.sendFilters({filter:this.state.filters,idFilter:n})}},{key:"render",value:function(){var e=this,t=this.props.hiddenCols||[];return(0,j.jsxs)("div",{className:Gt("filterBox",{"filterBox--hidden":!this.props.visible}),children:[(0,j.jsxs)("div",{className:"filterBox--header",children:[(0,j.jsx)(y.G,{icon:dt.YIN,className:"filterBox--header--icon",onClick:this.props.hide}),this.props.headerComponent,(0,j.jsx)(y.G,{icon:dt.$aW,className:"filterBox--header--reset-icon",onClick:function(){return e.resetAllFilters()}})]}),(0,j.jsxs)("div",{className:"filter-card--container",children:[(0,j.jsx)(Bt,{ids:this.props.ids,updateFilters:function(t){return e.updateIdFilters(t)},resetFilterHook:this.resetFilterHook,filters:this.state.idFilters}),this.props.filterable.map((function(n,i){return(0,j.jsx)(Nt,{resetFilterHook:e.resetFilterHook,updateFilters:function(t,n){return e.updateFilters(i,n,t)},currentFilters:e.state.filters[i]||[],toolName:n.name,filters:n.columns,hiddenCols:t[i]},"filtercontainer-".concat(i))}))]})]})}}]),n}(i.PureComponent),Yt=n(6123),St=n.n(Yt),Vt=n(9737),kt=n.n(Vt),Rt=n(7177),Ht=n.n(Rt),Tt=function(e){(0,c.Z)(n,e);var t=(0,u.Z)(n);function n(e){var i;return(0,a.Z)(this,n),(i=t.call(this,e)).prepareTextForRendering=function(){if(""!==i.props.yamlText){var e=Ht().parseDocument(i.props.yamlText,{prettyErrors:!0}),t=e.get("input_files");t&&(Array.isArray(t.items)?t.items.forEach((function(e){e.value=i.encloseFileInTags(e.value)})):e.set("input_files",i.encloseFileInTags(t)));var n=e.get("properties");n&&Array.isArray(n.items)&&n.items.forEach((function(e){Array.isArray(e.items)&&e.items.forEach((function(e){"property_file"===e.key.value&&(e.value.value=i.encloseFileInTags(e.value.value))}))})),i.setState({content:e})}},i.encloseFileInTags=function(e){return i.state.splitterTag+i.state.fileTag+e+i.state.fileTag+i.state.splitterTag},i.loadFileInViewer=function(e,t){e.preventDefault(),i.props.loadNewFile(t)},i.state={splitterTag:"",fileTag:"",content:i.props.yamlText},i}return(0,o.Z)(n,[{key:"componentDidMount",value:function(){this.prepareTextForRendering()}},{key:"componentDidUpdate",value:function(e){e.yamlText!==this.props.yamlText&&this.prepareTextForRendering()}},{key:"render",value:function(){var e=this;if(this.state.content.errors&&this.state.content.errors.length>0)return(0,j.jsx)(j.Fragment,{children:(0,j.jsxs)("div",{className:"link-overlay-text",children:["Errors parsing YAML file:",(0,j.jsx)("ul",{children:this.state.content.errors.map((function(e,t){return(0,j.jsx)("li",{children:(0,j.jsx)("pre",{children:e.message})},t)}))}),(0,j.jsx)("pre",{children:this.props.yamlText}),";"]})});Ht().scalarOptions.str.fold={lineWidth:0};var t=this.state.content.toString().split(this.state.splitterTag).map((function(t){return t.match("^".concat(e.state.fileTag,"(?:.)+").concat(e.state.fileTag,"$"))?(t=t.replace(new RegExp(e.state.fileTag,"g"),""),(0,j.jsx)("a",{onClick:function(n){return e.loadFileInViewer(n,t)},className:"link-overlay-file-link",href:e.props.createHref(t),children:t},t)):t}));return(0,j.jsx)("pre",{className:"link-overlay-text",children:t})}}]),n}(i.Component),Xt=n(1842);Xt.jQ({useWebWorkers:!1});var Kt={},Lt=function(e){(0,c.Z)(n,e);var t=(0,u.Z)(n);function n(e){var i;(0,a.Z)(this,n),(i=t.call(this,e)).loadNewFile=function(e){var t=i.createFileUrl(e);i.setState({isYAML:i.isYAMLFile(e),isSecondLevel:!0,content:"loading file: ".concat(t)}),i.loadFile(t)},i.loadOriginalFile=function(){i.setState({isYAML:i.isYAMLFile(i.props.link),isSecondLevel:!1,content:"loading file: ".concat(i.props.link),error:void 0}),i.loadFile(i.props.link)},i.loadOriginalFileIfEnter=function(e){"Enter"===e.key&&i.loadOriginalFile()},i.createFileUrl=function(e){return kt().join(i.props.link,"../"+e)},i.loadFile=i.loadFileXMLHttpRequest,i.loadFileFromZip=function(e){var t=decodeURIComponent(e),n=t.lastIndexOf("/")>t.lastIndexOf("\\")?"/":"\\",r=t.lastIndexOf(n),s=t.substring(0,r)+".zip",l=t.split(n),a="".concat(l[l.length-2],"/").concat(l[l.length-1]);s in Kt?i.loadFileFromZipEntries(Kt[s],a,s):i.readZipArchive(s,a)},i.readZipArchive=function(e,t){new Xt.Mr(new Xt.R(e)).getEntries().then((function(n){i.handleZipEntries(n,t,e)}),(function(n){i.readZipArchiveNoHttpRange(e,t)}))},i.readZipArchiveNoHttpRange=function(e,t){new Xt.Mr(new Xt.pE(e)).getEntries().then((function(n){i.handleZipEntries(n,t,e)}),(function(n){i.readZipArchiveManually(e,t)}))},i.readZipArchiveManually=function(e,t){try{var n=new XMLHttpRequest;n.responseType="arraybuffer",n.addEventListener("load",(function(){var r=new Uint8Array(n.response);new Xt.Mr(new Xt.I8(r)).getEntries().then((function(n){return i.handleZipEntries(n,t,e)}),i.setError)}),!1),n.addEventListener("error",i.setError,!1),n.open("GET",e),n.send()}catch(r){i.setError('HTTP request for the file "'.concat(t,'" failed'),r)}},i.handleZipEntries=function(e,t,n){Kt[n]=e,i.loadFileFromZipEntries(e,t,n)},i.loadFileFromZipEntries=function(e,t,n){var r=e.find((function(e){return e.filename===t}));r?r.getData(new Xt.Ek).then((function(e){i.setState({content:e})})):i.setError('Could not find the file "'.concat(t,'" in "').concat(n,'"'))},i.setError=function(e,t){var n=t&&"string"===typeof t?t:e;i.setState({error:"".concat(n)})},i.handlePopState=function(){window.history.back(),window.addEventListener("click",i.props.close,!1)},i.renderHelpMessageForLocalLogs=function(){if("file:"!==window.location.protocol)return null;var e=(0,j.jsxs)(j.Fragment,{children:[(0,j.jsxs)("p",{children:["If you are using ",(0,j.jsx)("strong",{children:"Chrome"})," or a Chrome-based browser, try launching it with the command-line option"," ",(0,j.jsx)("strong",{children:(0,j.jsx)("code",{children:"--allow-file-access-from-files"})}),"."]}),(0,j.jsxs)("p",{children:["If you are using ",(0,j.jsx)("strong",{children:"Firefox"}),", please open the extended settings by entering ",(0,j.jsx)("code",{children:"about:config"})," in the URL bar, search for"," ",(0,j.jsx)("strong",{children:(0,j.jsx)("code",{children:"security.fileuri.strict_origin_policy"})})," ","and set this option to ",(0,j.jsx)("code",{children:"false"})," by double-clicking on it and restart your browser (",(0,j.jsx)("a",{href:"https://kb.mozillazine.org/Security.fileuri.strict_origin_policy",children:"more details"}),")."]}),(0,j.jsx)("p",{children:(0,j.jsx)("strong",{children:"Note that these settings will allow local web pages to access all of your files, so make sure to not open any untrusted local HTML documents."})})]}),t=new URL(i.state.currentFile,document.baseURI),n=function(e,t){var n=e.pathname.split("/"),i=t.pathname.split("/"),r=n.findIndex((function(e,t){return e!==i[t]}));return[n.slice(0,r).join("/"),n.slice(r).join("/")]}(window.location,t),r=(0,g.Z)(n,2),s=r[0],l=r[1];if(":"===window.location.pathname[2]){if(!s)return(0,j.jsxs)(j.Fragment,{children:[e,(0,j.jsx)("p",{children:"Alternatively, you can start a local web server serving the directories with the tables and result files, but for doing so you first need to make sure that table and result files are on the same partition."})]});"/"===s[0]&&(s=s.substring(1))}var a="127.0.0.1",o=8e3,c="http://".concat(a,":").concat(o,"/").concat(l).concat(window.location.hash);return(0,j.jsxs)(j.Fragment,{children:[e,(0,j.jsxs)("p",{children:["Alternatively, you can start a local web server serving the directories with the tables and result files.",(0,j.jsx)("br",{}),"To do so, execute the following command and then open"," ",(0,j.jsx)("a",{href:c,children:"this link"})," (adjust the port number ",o," if it is already used on your system):",(0,j.jsx)("br",{}),(0,j.jsx)(A,{children:(0,j.jsxs)("code",{children:["python3 -m http.server -b ",a," ",o," -d ",s||"/"]})})]})]})};var r=!!e.link&&i.isYAMLFile(e.link);return i.state={isYAML:r,content:"loading file: ".concat(e.link),currentFile:e.link,isSecondLevel:!1},i}return(0,o.Z)(n,[{key:"componentDidMount",value:function(){this.loadFile(this.props.link),window.history.pushState({},"",""),window.addEventListener("popstate",this.props.close,!1)}},{key:"componentDidUpdate",value:function(){var e=document.getElementById("modal-container");e&&e.focus()}},{key:"componentWillUnmount",value:function(){window.removeEventListener("popstate",this.props.close,!1),window.removeEventListener("click",this.props.close,!1)}},{key:"isYAMLFile",value:function(e){return e.endsWith(".yml")}},{key:"loadFileFetch",value:function(){var e=(0,Ve.Z)((0,Se.Z)().mark((function e(t){var n,i;return(0,Se.Z)().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(!t){e.next=19;break}return this.setState({currentFile:t}),e.prev=2,e.next=5,fetch(t);case 5:if(n=e.sent,!Y(n.status)){e.next=13;break}return e.next=9,n.text();case 9:i=e.sent,this.setState({content:i}),e.next=14;break;case 13:throw Error("Received response status ".concat(n.status));case 14:e.next=19;break;case 16:e.prev=16,e.t0=e.catch(2),this.loadFileFromZip(t);case 19:case"end":return e.stop()}}),e,this,[[2,16]])})));return function(t){return e.apply(this,arguments)}}()},{key:"loadFileXMLHttpRequest",value:function(e){var t=this;if(e)try{this.setState({currentFile:e});var n=new XMLHttpRequest;n.addEventListener("load",(function(){if(Y(n.status)){var i=n.responseText;t.setState({content:i})}else t.loadFileFromZip(e)})),n.addEventListener("error",(function(){return t.loadFileFromZip(e)})),n.open("GET",e),n.send()}catch(i){this.loadFileFromZip(e)}}},{key:"render",value:function(){var e=this;return ut().setAppElement(document.getElementById("root")),(0,j.jsxs)(ut(),{id:"modal-container",ariaHideApp:!1,className:St()("overlay",{"second-level":this.state.isSecondLevel}),isOpen:!0,onRequestClose:function(){return e.handlePopState()},children:[(0,j.jsxs)("div",{className:"link-overlay-header-container",children:[(0,j.jsx)(y.G,{icon:dt.YIN,onClick:function(){return e.handlePopState()},className:"closing"}),this.state.isSecondLevel?(0,j.jsxs)("span",{className:"link-overlay-back-button",tabIndex:"0",role:"button",onClick:this.loadOriginalFile,onKeyDown:this.loadOriginalFileIfEnter,children:[(0,j.jsx)(y.G,{className:"link-overlay-back-icon",icon:dt.acZ}),"Back to task definition"]}):""]}),this.state.error?(0,j.jsxs)("div",{className:"link-overlay-text",children:[(0,j.jsxs)("p",{style:{marginTop:"0"},children:["Error while loading content (",this.state.error,")."]}),(0,j.jsxs)("p",{children:["This could be a problem of the"," ",(0,j.jsx)("a",{href:"https://en.wikipedia.org/wiki/Same-origin_policy",children:"same-origin policy"})," ","of your browser."]}),this.renderHelpMessageForLocalLogs(),(0,j.jsxs)("p",{children:["You can also try to download the file:"," ",(0,j.jsx)("a",{href:this.state.currentFile,children:this.state.currentFile})]})]}):this.state.isYAML?(0,j.jsx)(Tt,{yamlText:this.state.content,createHref:this.createFileUrl,loadNewFile:this.loadNewFile}):(0,j.jsx)("pre",{className:"link-overlay-text",children:this.state.content})]})}}]),n}(i.Component),Ot=function(e){(0,c.Z)(n,e);var t=(0,u.Z)(n);function n(){var e;(0,a.Z)(this,n);for(var i=arguments.length,r=new Array(i),s=0;s1&&void 0!==arguments[1]&&arguments[1];i.filteredData=t?e:e.map((function(e){return e._original}))},i.filterPlotData=function(e){var t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];i.lastImmediate&&clearImmediate(i.lastImmediate),i.lastImmediate=setImmediate((function(){i.filterUrlSetter(e,{pushState:!0,callbacks:[i.updateFiltersFromUrl,i.updateState]}),i.lastFiltered=e.filter((function(e){return e.values&&e.values.length>0||e.value}))})),t&&i.setFilter(i.runFilter(e),!0),i.setState({tableData:i.filteredData,filtered:e})},i.resetFilters=function(){i.setState({tableData:i.originalTable,filtered:[]})},i.findAllValuesOfColumn=function(e,t){return i.originalTools.map((function(n,r){return n.columns.map((function(s,a){if(e(n,s)){var o=i.originalTable.map((function(e){return t(e.results[r],e.results[r].values[a])})).filter(Boolean);return(0,l.Z)(new Set(o)).sort()}}))}))},i.getRowName=function(e){return e.id.filter((function(e){return e})).join(" | ")},i.getRelevantUrlParams=function(){return(document.location.href.split("?")[1]||"").split("&").filter((function(e){return e.startsWith("hidden")||e.startsWith("filter")})).join("&")},i.switchToQuantile=function(e){i.setState({quantilePreSelection:e});var t=i.getRelevantUrlParams();document.location.hash="#/quantile"+(t?"?"+t:"")};var r,o=function(e){var t=e.head,n=e.tools,i=e.rows,r=e.stats,l=e.props,a=e.initial;return{tableHeader:t,taskIdNames:t.task_id_names,tools:n.map((function(e,t){return(0,s.Z)((0,s.Z)({},e),{},{toolIdx:t,columns:e.columns.map((function(e,t){return(0,s.Z)((0,s.Z)({},e),{},{colIdx:t})})),scoreBased:i.every((function(e){return void 0!==e.results[t].score}))})})),columns:n.map((function(e){return e.columns.map((function(e){return e.title}))})),tableData:i,stats:r,properties:l,initial:a}}(e.data),c=o.tableHeader,u=o.taskIdNames,d=o.tools,h=o.columns,g=o.tableData,p=o.stats,m=o.initial;m&&!document.location.href.includes("#")&&(r=m,document.location.href=encodeURI("".concat(document.location.href,"#").concat(r)));var b=function(e){var t=e.tools,n=e.rows;return t.map((function(e,t){var i,r=e.tool,l=e.date,a=e.niceName,o="".concat(r," ").concat(l," ").concat(a),c=e.columns.map((function(e,t){if(e)return"status"===e.type?(i=t,(0,s.Z)((0,s.Z)({},e),{},{categories:{},statuses:{},idx:t})):"text"===e.type?(0,s.Z)((0,s.Z)({},e),{},{distincts:{},idx:t}):(0,s.Z)((0,s.Z)({},e),{},{min:1/0,max:-1/0,idx:t})}));B(i)||(c[i]=(0,s.Z)((0,s.Z)({},c[i]),{},{categories:{},statuses:{}}));var u,d=(0,f.Z)(n);try{for(d.s();!(u=d.n()).done;){var h=u.value.results[t];for(var g in B(i)||(c[i].categories["".concat(h.category," ")]=!0),h.values){var p=h.values[g].raw,m=c[g];m&&!B(p)&&("status"===m.type?m.statuses[p]=!0:"text"===m.type?m.distincts[p]=!0:(m.min=Math.min(m.min,Number(p)),m.max=Math.max(m.max,Number(p))))}}}catch(b){d.e(b)}finally{d.f()}return{name:o,columns:c.map((function(e){var t=e.distincts,n=e.categories,i=e.statuses,r=(0,v.Z)(e,je);return t?(0,s.Z)((0,s.Z)({},r),{},{distincts:Object.keys(t)}):n?(0,s.Z)((0,s.Z)({},r),{},{categories:Object.keys(n),statuses:Object.keys(i)}):r}))}}))}(i.props.data);i.originalTable=g,i.originalTools=d,i.taskIdNames=u,i.columns=h,i.stats=p,i.tableHeader=c,i.filteredData=[],i.state={tools:d,tableData:g,filterable:b,showSelectColumns:!1,showLinkOverlay:!1,filtered:[],filterBoxVisible:!1,active:Dt(),quantilePreSelection:d[0].columns[1],hiddenCols:ne(d)},i.statusValues=i.findAllValuesOfColumn((function(e,t){return"status"===t.type}),(function(e,t){return G(t)})),i.originalTools.forEach((function(e,t){return e.columns.filter((function(e){return"status"===e.type})).forEach((function(e,n){i.originalTable.some((function(e){return"empty"===e.results[t].category}))&&i.statusValues[t][n].push(Fe)}))})),i.categoryValues=i.findAllValuesOfColumn((function(e,t){return"status"===t.type}),(function(e,t){return e.category}));var I=i.categoryValues.map((function(e){return e&&e.map((function(e){return e&&e.map((function(e){return"".concat(e," ")}))}))}));i.filterUrlSetter=q(i.statusValues,I),i.filterUrlRetriever=function(e,t){var n=Q({categoryValues:t,statusValues:e});return function(e){var t=X(e);return t.filter?n(t.filter):null}}(i.statusValues,I);var C=i.getFiltersFromUrl();return C&&(i.filteredData=i.runFilter(C),i.lastFiltered=C,i.state=(0,s.Z)((0,s.Z)({},i.state),{},{tableData:i.filteredData,filtered:C})),i}return(0,o.Z)(n,[{key:"componentDidMount",value:function(){this.updateFiltersFromUrl(),this.updateState()}},{key:"runFilter",value:function(e){var t=e.reduce((function(e,t){var n=t.id,i=t.value,r=t.type,s=t.values;if(B(i)&&B(s)||"string"===typeof i&&"all"===i.trim())return e;if("id"===n)return e.id={value:i,values:s},e;var l,a=J(n),o=a.tool,c=a.column;if("diff"===i)return e.diff||(e.diff=[]),e.diff.push({col:c}),e;if(e[o]||(e[o]={}),W({type:r})&&i.includes(":")){var u=i.split(":"),d=(0,g.Z)(u,2),h=d[0],f=d[1];l={min:h=""===h?-1/0:Number(h),max:f=""===f?1/0:Number(f)}}else l=" "===i[i.length-1]?{category:i.substr(0,i.length-1)}:"status"===r?{status:i}:{value:i};return e[o][c]||(e[o][c]=[]),e[o][c].push(l),e}),{});return Ae(t)(this.originalTable)}},{key:"render",value:function(){var e,t,n=this,i=function(e){var t=e.className,i=e.isReset,r=void 0!==i&&i,s=e.onClick,l=e.enabled;return(0,j.jsx)(Ot,{className:t,showFilterText:r,onClick:s,enabled:l,isFiltered:!!n.state.filtered.length,resetFilters:n.resetFilters,filteredCount:n.state.tableData.length,totalCount:n.originalTable.length})},r=this.getRelevantUrlParams();return(0,j.jsx)(d.UT,{children:(0,j.jsxs)("div",{className:"overview",children:[(0,j.jsxs)("div",{className:"overview-container",children:[(0,j.jsx)(wt,{headerComponent:i({className:"filterBox--header--reset",isReset:!0,enabled:!1}),tableHeader:this.tableHeader,tools:this.state.tools,selectColumn:this.toggleSelectColumns,filterable:this.state.filterable,setFilter:this.filterPlotData,resetFilters:this.resetFilters,filtered:this.state.filtered,visible:this.state.filterBoxVisible,hiddenCols:this.state.hiddenCols,hide:function(){n.setState({filterBoxVisible:!1})},ids:(e=this.originalTable,t=this.taskIdNames,k(["0","id"],[],e).reduce((function(e,n,i){return(0,s.Z)((0,s.Z)({},e),{},(0,b.Z)({},t[i],n))}),{})),addTypeToFilter:this.addTypeToFilter}),(0,j.jsxs)("div",{className:"menu",children:[Ut.map((function(e){var t=e.key,i=e.title,s=e.path,l=e.icon;return(0,j.jsxs)(d.rU,{className:St()("menu-item",{selected:n.state.active===t}),to:s+(r?"?"+r:""),onClick:function(){return n.setState((function(){return{active:t}}))},children:[i," ",l||""]},s)})),i({className:"reset tooltip",enabled:!0,onClick:function(){n.setState({filterBoxVisible:!0})}})]}),(0,j.jsx)("div",{className:"route-container",children:(0,j.jsxs)(h.Z5,{children:[(0,j.jsx)(h.AW,{path:"/",element:(0,j.jsx)(st,{tools:this.state.tools,tableHeader:this.tableHeader,version:this.props.data.version,selectColumn:this.toggleSelectColumns,stats:this.stats,onStatsReady:this.props.onStatsReady,switchToQuantile:this.switchToQuantile,tableData:this.state.tableData,hiddenCols:this.state.hiddenCols,filtered:this.state.filtered.length>0})}),(0,j.jsx)(h.AW,{path:"/table",element:(0,j.jsx)(Ye,{tableData:this.state.tableData,tools:this.state.tools,selectColumn:this.toggleSelectColumns,filterPlotData:this.filterPlotData,filters:this.state.filtered,toggleLinkOverlay:this.toggleLinkOverlay,statusValues:this.statusValues,categoryValues:this.categoryValues,hiddenCols:this.state.hiddenCols,addTypeToFilter:this.addTypeToFilter})}),(0,j.jsx)(h.AW,{path:"/quantile",element:(0,j.jsx)(xt,{table:this.state.tableData,tools:this.state.tools,preSelection:this.state.quantilePreSelection,getRowName:this.getRowName,hiddenCols:this.state.hiddenCols,isFlexible:this.props.renderPlotsFlexible})}),(0,j.jsx)(h.AW,{path:"/scatter",element:(0,j.jsx)(Ct,{table:this.state.tableData,columns:this.columns,tools:this.state.tools,getRowName:this.getRowName,hiddenCols:this.state.hiddenCols,isFlexible:this.props.renderPlotsFlexible})}),(0,j.jsx)(h.AW,{path:"/info",element:(0,j.jsx)(ot,{version:this.props.data.version,selectColumn:this.toggleSelectColumns})})]})})]}),(0,j.jsxs)("div",{children:[this.state.showSelectColumns&&(0,j.jsx)(ht,{close:this.toggleSelectColumns,currColumns:this.columns,tableHeader:this.tableHeader,tools:this.state.tools,hiddenCols:this.state.hiddenCols,updateParentStateOnClose:function(){n.updateState(),n.updateFiltersFromUrl()}}),this.state.showLinkOverlay&&(0,j.jsx)(Lt,{close:this.toggleLinkOverlay,link:this.state.link,toggleLinkOverlay:this.toggleLinkOverlay})]})]})})}}]),n}(i.Component);var Pt=function(e){return""===window.location.hash&&(window.location.hash="#/"),(0,j.jsx)("div",{className:"App",children:(0,j.jsx)("main",{children:(0,j.jsx)(Et,{data:window.data,renderPlotsFlexible:!0,onStatsReady:e.onStatsReady})})})};r.render((0,j.jsx)(Pt,{}),document.getElementById("root")),document.getElementById("msg-container").remove()},4654:function(){}},t={};function n(i){var r=t[i];if(void 0!==r)return r.exports;var s=t[i]={id:i,loaded:!1,exports:{}};return e[i].call(s.exports,s,s.exports,n),s.loaded=!0,s.exports}n.m=e,function(){var e=[];n.O=function(t,i,r,s){if(!i){var l=1/0;for(u=0;u=s)&&Object.keys(n.O).every((function(e){return n.O[e](i[o])}))?i.splice(o--,1):(a=!1,s0&&e[u-1][2]>s;u--)e[u]=e[u-1];e[u]=[i,r,s]}}(),n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,{a:t}),t},function(){var e,t=Object.getPrototypeOf?function(e){return Object.getPrototypeOf(e)}:function(e){return e.__proto__};n.t=function(i,r){if(1&r&&(i=this(i)),8&r)return i;if("object"===typeof i&&i){if(4&r&&i.__esModule)return i;if(16&r&&"function"===typeof i.then)return i}var s=Object.create(null);n.r(s);var l={};e=e||[null,t({}),t([]),t(t)];for(var a=2&r&&i;"object"==typeof a&&!~e.indexOf(a);a=t(a))Object.getOwnPropertyNames(a).forEach((function(e){l[e]=function(){return i[e]}}));return l.default=function(){return i},n.d(s,l),s}}(),n.d=function(e,t){for(var i in t)n.o(t,i)&&!n.o(e,i)&&Object.defineProperty(e,i,{enumerable:!0,get:t[i]})},n.g=function(){if("object"===typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"===typeof window)return window}}(),n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.nmd=function(e){return e.paths=[],e.children||(e.children=[]),e},function(){var e={179:0};n.O.j=function(t){return 0===e[t]};var t=function(t,i){var r,s,l=i[0],a=i[1],o=i[2],c=0;if(l.some((function(t){return 0!==e[t]}))){for(r in a)n.o(a,r)&&(n.m[r]=a[r]);if(o)var u=o(n)}for(t&&t(i);ci?1:n1?t.slice(1).join("?"):void 0;if(void 0===n||0===n.length)return{};var i,r=n.split("&").map((function(e){return e.split("=")})),s={},l=(0,f.Z)(r);try{for(l.s();!(i=l.n()).done;){var a=(0,I.Z)(i.value),o=a[0],c=a.slice(1);s[decodeURI(o)]="filter"===o?c.join("="):decodeURI(c.join("="))}}catch(u){l.e(u)}finally{l.f()}return s},K=function(e){return Object.keys(e).filter((function(t){return void 0!==e[t]&&null!==e[t]})).map((function(t){return"".concat(t,"=").concat(e[t])})).join("&")},L=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=X(e),i=(0,s.Z)((0,s.Z)({},n),t),r=K(i),l=e.split("?")[0];return{newUrl:r.length>0?"".concat(l,"?").concat(r):l,queryString:"?".concat(r)}},O=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{callbacks:[],pushState:!1},n=L(window.location.href,e),i=n.newUrl;t.pushState&&window.history.pushState({},"",i);var r=t.callbacks;if(r&&r.length>0){var s,l=(0,f.Z)(r);try{for(l.s();!(s=l.n()).done;){var a=s.value;a()}}catch(o){l.e(o)}finally{l.f()}}window.location.href=i},E=function(e){for(var t=[],n=0,i=Object.entries(e);n2&&void 0!==arguments[2]&&arguments[2],i={};if(e.length>Math.floor(t.length/2)){var r,s=[],l=(0,f.Z)(t);try{for(l.s();!(r=l.n()).done;){var a=r.value;e.includes(a)||s.push(n?a.trim():a)}}catch(o){l.e(o)}finally{l.f()}i.notIn=s}else i.in=e.map((function(e){return n?e.trim():e}));return E(i)};function D(e,t,n,i,r){var s=[],l=e.statusValues,a=e.categoryValues,o=t[n][i],c=r[n][i],u=!!l,d=!!a;if(u){var h=U(l,o);s.push("status(".concat(h,")")),d||s.push("category(empty())")}if(d){u||s.push("status(empty())");var f=U(a,c,!0);s.push("category(".concat(f,")"))}return s.join(",")}function P(e){if("string"!==typeof e)throw new Error("Invalid value type");return e.replaceAll("(","%28").replaceAll(")","%29")}var M=function(e){if("string"!==typeof e)throw new Error("Invalid value type for converting to RegExp");return new RegExp(e.replace(/[.*+?^${}()|[\]\\]/g,"\\$&"),"ui")},J=function(e){if("string"!==typeof e)throw new Error("Invalid filter ID");var t=e.split("_");if(2===t.length)throw new Error("Invalid filter ID");return{tool:t[0],name:t.length>2?t.slice(1,-1).join("_"):void 0,column:t.length>2?t.at(-1):void 0}},z=function(e){var t,n=arguments.length>1&&void 0!==arguments[1]&&arguments[1],i={},r=0,s="",l=(0,f.Z)(e);try{for(l.s();!(t=l.n()).done;){var a=t.value;if("("!==a){if(")"!==a)0!==r||","!==a?s+=a:s="";else if(s+=a,0===--r){var o=s.indexOf("("),c=s.substr(0,o),u=s.substr(o+1,s.length-1-(o+1));i[c]=n?decodeURIComponent(u):u}}else s+=a,r++}}catch(d){l.e(d)}finally{l.f()}return i},_=function(e,t,n,i,r){return"values"===e?[{values:t.split(",").map(unescape)}]:"value"===e?[{value:unescape(t)}]:"status"===e||"category"===e?function(e,t,n,i,r){for(var s=z(t),a=[],o=0,c=Object.entries(s);o0?r.ids={values:u.map((function(e){return e||""}))}:d&&s.push({id:o,value:c})}}catch(K){l.e(K)}finally{l.f()}var Z=r.ids,j=(0,v.Z)(r,F),A=[];Z&&A.push("id(values(".concat(Z.values.map((function(e){return P(encodeURIComponent(e))})).join(","),"))")),s&&s.forEach((function(e){A.push("id_any(value(".concat(P(encodeURIComponent(e.value)),"))"))}));for(var N=0,W=Object.entries(j);N0&&A.push("".concat(B,"(").concat(S.join(","),")"))}return A.join(",")}}({statusValues:e,categoryValues:t});return function(e,t){if(!e)return O({filter:void 0},t);var i=n(e);return O(i?{filter:i}:{filter:void 0},t)}},$=" ",ee=" ",te=function(){function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"Unknown";(0,a.Z)(this,e),this._defaultOptions={whitespaceFormat:!1,html:!1,leadingZero:!0,additionalFormatting:function(e){return e}},this.significantDigits=t,this.maxPositiveDecimalPosition=-1,this.maxNegativeDecimalPosition=-1,this.name=n}return(0,o.Z)(e,[{key:"addDataItem",value:function(e){var t=this.format(e).split(/\.|,/),n=(0,p.Z)(t,2),i=n[0],r=n[1];this.maxPositiveDecimalPosition=Math.max(this.maxPositiveDecimalPosition,i&&"0"!==i?i.length:0),this.maxNegativeDecimalPosition=Math.max(this.maxNegativeDecimalPosition,r?r.length:0)}},{key:"format",value:function(e){var t=e.toString(),n="",i="",r=0,s=0,l=!1,a=!1;if("NaN"===t)return"NaN";if(t.endsWith("Infinity"))return t.replace("Infinity","Inf");if(t.includes("e")){var o=t.split("-"),c=(0,p.Z)(o,2),u=c[0],d=c[1],h=0;u.includes(".")&&(h=1),t=Number(e).toFixed(Number(d)+h)}for(var f=t.replace(/,/,".").indexOf(".");sr;){var g=t[r];if("."===g||","===g)n+=".",a=!0;else{if(!l){if("0"===g){r+=1,a&&(n+=g);continue}l=!0}n+=g,s+=1}r+=1}if(i=t.substring(r),""===n&&""===i&&(n=t),"."===n[0]&&(n="0".concat(n)),""!==i){var m="."===i[0];if(i=i.replace(/\./,""),i="".concat(i[0],".").concat(i.substr(1)),i=Math.round(Number(i)),(i=isNaN(i)?"":i.toString()).length>1&&"."!==i[0]){var v=i[0];i=i[1];for(var b=n.length,I=n.split("."),C=(0,p.Z)(I,2)[1],x=C&&C.length-1||0,y=C?"0.":"",Z=x;Z>0;)y+="0",Z-=1;for(n=function(e,t){var n=e,i=t;if("string"===typeof e&&(n=Number(e)),"string"===typeof t&&(i=Number(t)),Number.isInteger(n)||Number.isInteger(i))return n+i;var r=e.toString(),s=r.length,l=r.indexOf("."),a=t.toString(),o=a.length,c=a.indexOf("."),u=Math.max(s-l,o-c)-1;return Number((n+i).toFixed(u))}(n,y+=v).toFixed(x+1).substr(0,b);n.length1&&void 0!==arguments[1]?arguments[1]:{},i=(0,s.Z)((0,s.Z)({},e._defaultOptions),n),r=i.whitespaceFormat,l=i.html,a=i.leadingZero,o=i.additionalFormatting,c={significantDigits:e.significantDigits,maxDecimalInputLength:e.maxNegativeDecimalPosition};if(G(e.significantDigits))return o(t.toString(),c);var u=e.format(t);if("NaN"===(u=o(u,c)))return u;if(r){var d=l?$:" ",h=u.split(/\.|,/),f=(0,p.Z)(h,2),g=f[0],m=f[1];"0"!==g||a||(g=m?"":"0"),g=g||"";for(var v=(m=m||"")?".":d;m.length=d&&I<=h}if(s)break}}catch(C){o.e(C)}finally{o.f()}if(!s)return!1}return!0}));return c}},Ae=(xe={},(0,b.Z)(xe,"empty","Empty rows"),(0,b.Z)(xe,"aborted","\u2014"),xe);function Ne(e){var t=e.column.id,n=e.runSetIdx,i=e.columnIdx,r=e.allCategoryValues,s=e.allStatusValues,a=e.filteredColumnValues,o=e.setCustomFilters,c=r[n][i],u=function(e){var t=e.categoryFilters,n=e.statusFilters,i=e.categoryFilterValues,r=e.statusFilterValues,s=[];return re(t,i)||(s=t),re(n,r)||(s=[].concat((0,l.Z)(s),(0,l.Z)(n))),s}({categoryFilters:V([n,"categories"],[],a),statusFilters:V([n,i],[],a),categoryFilterValues:c.map((function(e){return"".concat(e," ")})),statusFilterValues:s[n][i]}),d=0===u.length,h=u.length>1||u[0]===N,f=u&&u[0],p=(d?"all ":h&&"multiple")||f;return(0,j.jsxs)("select",{className:"filter-field",onChange:function(e){return o({id:t,value:e.target.value})},value:p,children:[h&&(0,j.jsx)("option",{value:"multiple",disabled:!0,children:u.map((function(e){return e.trim()})).filter((function(e){return"all"!==e&&e!==N})).join(", ")||"No filters selected"}),(0,j.jsx)("option",{value:"all ",children:"Show all"}),c.filter((function(e){return e in Ae})).map((function(e){return(0,j.jsx)("option",{value:e+" ",children:Ae[e]},e)})),(0,j.jsx)("optgroup",{label:"Category",children:c.filter((function(e){return!(e in Ae)})).sort().map((function(e){return(0,j.jsx)("option",{value:e+" ",className:e,children:e},e)}))}),(0,j.jsx)("optgroup",{label:"Status",children:s[n][i].filter((function(e){return e!==je})).sort().map((function(e){return(0,j.jsx)("option",{value:e,children:e},e)}))})]})}var We=(0,i.memo)(Ne),Ge=[50,100,250,500,1e3,2500],Be=function(){var e=X();return e.sort?e.sort.split(";").map((function(e){var t=e.split(",");return{id:t[0],desc:"desc"===t[1]}})):[]},we=function(e){var t=(0,i.useState)(!0),n=(0,p.Z)(t,2),r=n[0],a=n[1],o=(0,i.useState)(Ce()),c=(0,p.Z)(o,2),u=c[0],d=c[1],v=(0,i.useState)({}),b=(0,p.Z)(v,2),I=b[0],C=b[1],x=(0,i.useState)(!1),y=(0,p.Z)(x,2),Z=y[0],F=y[1],A=(0,i.useState)(null),N=(0,p.Z)(A,2),S=N[0],Y=N[1],V=(0,i.useCallback)((function(t){var n,i=t.tool,r=t.name,s=t.column,l=t.isCategory,a=l?e.statusValues:e.categoryValues,o=[],c=(0,f.Z)(a[i][s]);try{for(c.s();!(n=c.n()).done;){var u=n.value;o.push({id:"".concat(i,"_").concat(r,"_").concat(s),value:"".concat(u).concat(l?"":" ")})}}catch(d){c.e(d)}finally{c.f()}return o}),[e.categoryValues,e.statusValues]),R=(0,i.useCallback)((function(t){var n,i=t.tool,r=t.name,s=t.column,l=[],a=(0,f.Z)(e.statusValues[i][s]);try{for(a.s();!(n=a.n()).done;){var o=n.value;l.push({id:"".concat(i,"_").concat(r,"_").concat(s),value:o})}}catch(p){a.e(p)}finally{a.f()}var c,u=(0,f.Z)(e.categoryValues[i][s]);try{for(u.s();!(c=u.n()).done;){var d=c.value,h="".concat(d," ");l.push({id:"".concat(i,"_").concat(r,"_").concat(s),value:h})}}catch(p){u.e(p)}finally{u.f()}return l}),[e.categoryValues,e.statusValues]),H=(0,i.useCallback)((function(t){"id"===t.id&&(t.isTableTabFilter=!0);var n=[].concat((0,l.Z)(e.filters.filter((function(e){return e.id!==t.id}))),[t]);n=n.filter((function(e){return""!==e.value})),e.addTypeToFilter(n);var i=[];if("status"===t.type){var r=J(t.id),s=r.tool,a=r.name,o=r.column,c=t.value;if("all"===c.trim())i=R({tool:s,name:a,column:o}),n=n.filter((function(e){var n=e.id,i=e.value;return!(n===t.id&&"all"===i.trim())}));else{var u=" "===c[c.length-1];i=V({tool:s,name:a,column:o,isCategory:u})}}e.addTypeToFilter(i),e.filterPlotData([].concat((0,l.Z)(n),(0,l.Z)(i)),!0)}),[e,V,R]),T=(0,i.useCallback)((function(t){var n=t.column.id,i=e.filters.find((function(e){return e.id===n}));return(0,j.jsx)(Ie,{id:n,setFilter:i,disableTaskText:Z,setCustomFilters:H,focusedFilter:S,setFocusedFilter:Y})}),[Z,e.filters,H,S]),K=(0,i.useCallback)((function(t){var n=t.column.id,i=e.filters.find((function(e){return e.id===n}));return(0,j.jsx)(ye,{id:n,setFilter:i,setCustomFilters:H,focusedFilter:S,setFocusedFilter:Y})}),[e.filters,H,S]),L=(0,i.useMemo)((function(){var t=function(t,n,i){if("status"===n.type)return function(t,n,i){var r="".concat(t,"_").concat(n.display_title,"_").concat(i),l=I[r];return{id:r,Header:(0,j.jsx)(he,{column:n}),className:"reg-column",hidden:e.hiddenCols[t].includes(n.colIdx),minWidth:50,width:l||k(n,10),accessor:function(e){return e.results[t].values[i]},Cell:function(n){var i,r=n.row.original.results[t].category,s=n.row.original.results[t].href;return"aborted"===r?(s=void 0,i="Result missing because run was aborted or not executed"):"empty"===r?i="Result missing because task was not part of benchmark set":s&&(i="Click here to show output of tool"),(0,j.jsx)(pe,{cell:n,href:s,className:r,toggleLinkOverlay:e.toggleLinkOverlay,title:i,force:!0})},sortType:function(e,t,n,i){return w(e.values[n],t.values[n])},filter:function(e){return e},Filter:function(n){return(0,j.jsx)(We,(0,s.Z)((0,s.Z)({},n),{},{runSetIdx:t,columnIdx:i,allCategoryValues:e.categoryValues,allStatusValues:e.statusValues,filteredColumnValues:u,setCustomFilters:H}))}}}(t,n,i);var r="".concat(t,"_").concat(n.display_title,"_").concat(i),l=I[r],a=W(n)?K:T;return{id:r,Header:(0,j.jsx)(he,{column:n}),className:"reg-column",hidden:e.hiddenCols[t].includes(n.colIdx),minWidth:50,width:l||k(n),accessor:function(e){return e.results[t].values[i]},Cell:function(t){return(0,j.jsx)(pe,{cell:t,toggleLinkOverlay:e.toggleLinkOverlay})},filter:function(e){return e},Filter:a,sortType:function(e,t,i,r){return W(n)?(s=e.values[i],l=t.values[i],B(s,1/0)-B(l,1/0)):w(e.values[i],t.values[i]);var s,l}}},n=e.tools.map((function(e,n){return function(e,t,n){return[ge(t),{Header:(0,j.jsx)(fe,{runSet:e}),columns:e.columns.map((function(e,i){return n(t,e,i)})),id:"runset-column"}]}(e,n,t)})).flat();return[{Header:function(){return(0,j.jsx)("div",{className:"fixed-task-header",children:(0,j.jsx)("form",{children:(0,j.jsxs)("label",{title:"Fix the first column",children:["Fixed task:",(0,j.jsx)("input",{name:"fixed",type:"checkbox",checked:r,onChange:function(e){var t=e.target;return a(t.checked)}})]})})})},className:"fixed-task",id:"task-id-column",sticky:r?"left":"",columns:[(0,s.Z)((0,s.Z)({width:.3*window.innerWidth,minWidth:230},I.id&&{width:I.id}),{},{Header:(0,j.jsx)(he,{children:(0,j.jsx)(de,{handler:e.selectColumn})}),accessor:"id",Cell:function(t){var n=t.row.original.id.map((function(e){return(0,j.jsx)("span",{className:"row_id",children:e},e)})),i=t.row.original.href;return i?(0,j.jsx)("a",{className:"row__name--cellLink",href:i,title:"Click here to show source code",onClick:function(t){return e.toggleLinkOverlay(t,i)},children:n},i):(0,j.jsx)("span",{title:"This task has no associated file",children:n})},Filter:T,sortType:function(e,t,n,i){var r=Array.isArray(e.values[n])?e.values[n].join():e.values[n],s=Array.isArray(t.values[n])?t.values[n].join():t.values[n];return r>s?1:r0&&C((0,s.Z)((0,s.Z)({},I),e))}),[be,I]),(0,i.useEffect)((function(){F(e.filters.some((function(e){var t=e.id,n=e.values;return"id"===t&&!G(n)})));var t=Ce();ve()(t,u)||d(t),ce>=te&&ne(te-1)}),[e.filters,u,ne,ce,te]);var xe=(0,h.TH)();(0,i.useEffect)((function(e){se(X().pageSize||250),ae(Be()),ne(X().page-1||0)}),[xe,se,ae,ne,window.location.href]);var Ze=function(e){return(0,j.jsx)("div",(0,s.Z)((0,s.Z)({className:"tr headergroup"},e.getHeaderGroupProps()),{},{children:e.headers.map((function(e){return(0,j.jsxs)("div",(0,s.Z)((0,s.Z)({},e.getHeaderProps({className:"th header ".concat(e.headers?"outer ":"").concat(e.className)})),{},{children:[(0,j.jsx)("div",(0,s.Z)((0,s.Z)({},e.canSort&&(!e.className||!e.className.includes("separator"))&&e.getSortByToggleProps({className:"header-sort-container clickable ".concat(e.isSorted?e.isSortedDesc?"sorted-desc ":"sorted-asc ":"")})),{},{children:e.render("Header")})),(!e.className||!e.className.includes("separator"))&&(0,j.jsx)("div",(0,s.Z)((0,s.Z)({},e.getResizerProps()),{},{className:"resizer ".concat(e.isResizing?"isResizing":"")}))]}))}))}))};return(0,j.jsx)("div",{className:"main-table",children:(0,j.jsxs)("div",{className:"table sticky",children:[(0,j.jsx)("div",{className:"table-content",children:(0,j.jsxs)("div",(0,s.Z)((0,s.Z)({className:"table-container"},P()),{},{children:[function(e){var t=e[0],n=e.filter((function(e){return e.headers.some((function(e){return e.canFilter}))}));return(0,j.jsxs)("div",{className:"table-header",children:[Ze(t),(0,j.jsxs)("div",{className:"shadow-container",children:[e.slice(1).map(Ze),n.map((function(e){return(0,j.jsx)("div",(0,s.Z)((0,s.Z)({className:"tr headergroup filter"},e.getHeaderGroupProps()),{},{children:e.headers.map((function(e){return(0,j.jsx)("div",(0,s.Z)((0,s.Z)({},e.getHeaderProps({className:"th header filter ".concat(e.headers?"outer ":"").concat(e.className)})),{},{children:e.canFilter?e.render("Filter"):null}))}))}))}))]})]})}(z),(0,j.jsx)("div",(0,s.Z)((0,s.Z)({},M()),{},{className:"table-body body",children:Q.map((function(e){return _(e),(0,j.jsx)("div",(0,s.Z)((0,s.Z)({},e.getRowProps()),{},{className:"tr",children:e.cells.map((function(e){return(0,j.jsx)("div",(0,s.Z)((0,s.Z)({},e.getCellProps({className:"td "+(e.column.className||"")})),{},{children:e.render("Cell")}))}))}))}))}))]}))}),(0,j.jsxs)("div",{className:"pagination",children:[(0,j.jsxs)("div",{id:"pagination-previous",className:"pagination-container",children:[(0,j.jsx)("div",{onClick:function(){return re()},className:"pagination-element button".concat(q?"":" disabled"),children:"Previous"})," "]}),(0,j.jsxs)("div",{id:"pagination-center",className:"pagination-container",children:[(0,j.jsxs)("div",{id:"goto-page-element",className:"pagination-element",children:["Page",(0,j.jsx)("input",{"aria-label":"jump to page",type:"number",value:Number(ce)+1,onChange:function(e){return ne(Number(e.target.value)-1)}}),"of ",ee.length]}),(0,j.jsx)("div",{id:"set-page-element",className:"pagination-element",children:(0,j.jsx)("select",{value:ue,onChange:function(e){return se(Number(e.target.value))},children:Ge.map((function(e){return(0,j.jsxs)("option",{value:e,children:[e," rows"]},e)}))})})]}),(0,j.jsxs)("div",{id:"pagination-next",className:"pagination-container",children:[(0,j.jsx)("div",{onClick:function(){return ie()},className:"pagination-element button".concat($?"":" disabled"),children:"Next"})," "]})]})]})})},Se=n(4165),Ye=n(5861);n(9e3);var ke=[],Ve={},Re=1,He=[{template:"data:text/plain;base64,Ly8gVGhpcyBmaWxlIGlzIHBhcnQgb2YgQmVuY2hFeGVjLCBhIGZyYW1ld29yayBmb3IgcmVsaWFibGUgYmVuY2htYXJraW5nOgovLyBodHRwczovL2dpdGh1Yi5jb20vc29zeS1sYWIvYmVuY2hleGVjCi8vCi8vIFNQRFgtRmlsZUNvcHlyaWdodFRleHQ6IDIwMTktMjAyMCBEaXJrIEJleWVyIDxodHRwczovL3d3dy5zb3N5LWxhYi5vcmc+Ci8vCi8vIFNQRFgtTGljZW5zZS1JZGVudGlmaWVyOiBBcGFjaGUtMi4wCgovLyBDT1BZIE9GIHV0aWxzLmpzLCBhcyBpbXBvcnRzIHdpbGwgbm90IHdvcmsgaGVyZQovKioKICogRnVuY3Rpb24gdG8gc2FmZWx5IGFkZCB0d28gbnVtYmVycyBpbiBhIHdheSB0aGF0IHNob3VsZCBtaXRpZ2F0ZSBlcnJvcnMKICogY2F1c2VkIGJ5IGluYWNjdXJhdGUgZmxvYXRpbmcgcG9pbnQgb3BlcmF0aW9ucyBpbiBqYXZhc2NyaXB0CiAqIEBwYXJhbSB7TnVtYmVyfFN0cmluZ30gYSAtIFRoZSBiYXNlIG51bWJlcgogKiBAcGFyYW0ge051bWJlcnxTdHJpbmd9IGIgLSBUaGUgbnVtYmVyIHRvIGFkZAogKgogKiBAcmV0dXJucyB7TnVtYmVyfSBUaGUgcmVzdWx0IG9mIHRoZSBhZGRpdGlvbgogKi8KY29uc3Qgc2FmZUFkZCA9IChhLCBiKSA9PiB7CiAgbGV0IGFOdW0gPSBhOwogIGxldCBiTnVtID0gYjsKCiAgaWYgKHR5cGVvZiBhID09PSAic3RyaW5nIikgewogICAgYU51bSA9IE51bWJlcihhKTsKICB9CiAgaWYgKHR5cGVvZiBiID09PSAic3RyaW5nIikgewogICAgYk51bSA9IE51bWJlcihiKTsKICB9CgogIGlmIChOdW1iZXIuaXNJbnRlZ2VyKGFOdW0pIHx8IE51bWJlci5pc0ludGVnZXIoYk51bSkpIHsKICAgIHJldHVybiBhTnVtICsgYk51bTsKICB9CgogIGNvbnN0IGFTdHJpbmcgPSBhLnRvU3RyaW5nKCk7CiAgY29uc3QgYUxlbmd0aCA9IGFTdHJpbmcubGVuZ3RoOwogIGNvbnN0IGFEZWNpbWFsUG9pbnQgPSBhU3RyaW5nLmluZGV4T2YoIi4iKTsKICBjb25zdCBiU3RyaW5nID0gYi50b1N0cmluZygpOwogIGNvbnN0IGJMZW5ndGggPSBiU3RyaW5nLmxlbmd0aDsKICBjb25zdCBiRGVjaW1hbFBvaW50ID0gYlN0cmluZy5pbmRleE9mKCIuIik7CgogIGNvbnN0IGxlbmd0aCA9IE1hdGgubWF4KGFMZW5ndGggLSBhRGVjaW1hbFBvaW50LCBiTGVuZ3RoIC0gYkRlY2ltYWxQb2ludCkgLSAxOwoKICByZXR1cm4gTnVtYmVyKChhTnVtICsgYk51bSkudG9GaXhlZChsZW5ndGgpKTsKfTsKCmNvbnN0IG1hdGhTdHJpbmdNYXggPSAoYSwgYikgPT4gewogIGNvbnN0IG51bUEgPSBOdW1iZXIoYSk7CiAgY29uc3QgbnVtQiA9IE51bWJlcihiKTsKICByZXR1cm4gbnVtQSA+IG51bUIgPyBhIDogYjsKfTsKCmNvbnN0IG1hdGhTdHJpbmdNaW4gPSAoYSwgYikgPT4gewogIGNvbnN0IG51bUEgPSBOdW1iZXIoYSk7CiAgY29uc3QgbnVtQiA9IE51bWJlcihiKTsKICByZXR1cm4gbnVtQSA8IG51bUIgPyBhIDogYjsKfTsKCi8qKgogKiBUaGlzIGZ1bmN0aW9uIGVpdGhlciBhZGRzIHR3byBudW1iZXJzIG9yIGluY3JlbWVudHMgdGhlIG51bWJlcgogKiBwYXNzZWQgaW4gdGhlIGZpcnN0IHBhcmFtZXRlciBpZiB0aGUgdHlwZSBpcyAic3RhdHVzIi4KICogSWYgdGhlIHNlY29uZCBwYXJhbWV0ZXIgaXMgbm90IGEgbnVtYmVyIGFuZCB0aGUgdHlwZSBpcyBub3Qgc3RhdHVzLAogKiB0aGUgZmlyc3QgcGFyYW1ldGVyIHdpbGwgYmUgcmV0dXJuZWQKICoKICogQHBhcmFtIHtOdW1iZXJ9IGEKICogQHBhcmFtIHsqfSBiCiAqIEBwYXJhbSB7U3RyaW5nfSB0eXBlCiAqLwpjb25zdCBtYXliZUFkZCA9IChhLCBiLCB0eXBlKSA9PiB7CiAgaWYgKE51bWJlcihiKSkgewogICAgcmV0dXJuIHNhZmVBZGQoYSwgYik7CiAgfQogIGlmICh0eXBlID09PSAic3RhdHVzIikgewogICAgcmV0dXJuIGEgKyAxOwogIH0KICByZXR1cm4gYTsKfTsKY29uc3QgcmVtb3ZlUm91bmRPZmYgPSAobnVtKSA9PiB7CiAgY29uc3Qgc3RyID0gbnVtLnRvU3RyaW5nKCk7CiAgaWYgKHN0ci5tYXRjaCgvXC4uKz8wezIsfVxkJC8pKSB7CiAgICByZXR1cm4gTnVtYmVyKHN0ci5zdWJzdHIoMCwgc3RyLmxlbmd0aCAtIDEpKTsKICB9CiAgcmV0dXJuIG51bTsKfTsKCmNvbnN0IGNhbGN1bGF0ZU1lYW4gPSAodmFsdWVzLCBhbGxJdGVtcykgPT4gewogIGNvbnN0IG51bU1pbiA9IE51bWJlcih2YWx1ZXMubWluKTsKICBjb25zdCBudW1NYXggPSBOdW1iZXIodmFsdWVzLm1heCk7CiAgaWYgKG51bU1pbiA9PT0gLUluZmluaXR5ICYmIG51bU1heCA9PT0gSW5maW5pdHkpIHsKICAgIHZhbHVlcy5hdmcgPSAiTmFOIjsKICB9IGVsc2UgaWYgKG51bU1pbiA9PT0gLUluZmluaXR5KSB7CiAgICB2YWx1ZXMuYXZnID0gIi1JbmZpbml0eSI7CiAgfSBlbHNlIGlmIChudW1NYXggPT09IEluZmluaXR5KSB7CiAgICB2YWx1ZXMuYXZnID0gIkluZmluaXR5IjsKICB9IGVsc2UgewogICAgdmFsdWVzLmF2ZyA9IHJlbW92ZVJvdW5kT2ZmKHZhbHVlcy5zdW0gLyBhbGxJdGVtcy5sZW5ndGgpOwogIH0KfTsKCmNvbnN0IGNhbGN1bGF0ZU1lZGlhbiA9ICh2YWx1ZXMsIGFsbEl0ZW1zKSA9PiB7CiAgaWYgKGFsbEl0ZW1zLmxlbmd0aCAlIDIgPT09IDApIHsKICAgIGNvbnN0IGlkeCA9IGFsbEl0ZW1zLmxlbmd0aCAvIDI7CiAgICB2YWx1ZXMubWVkaWFuID0KICAgICAgKE51bWJlcihhbGxJdGVtc1tpZHggLSAxXS5jb2x1bW4pICsgTnVtYmVyKGFsbEl0ZW1zW2lkeF0uY29sdW1uKSkgLyAyLjA7CiAgfSBlbHNlIHsKICAgIHZhbHVlcy5tZWRpYW4gPSBhbGxJdGVtc1tNYXRoLmZsb29yKGFsbEl0ZW1zLmxlbmd0aCAvIDIuMCldLmNvbHVtbjsKICB9Cn07CmNvbnN0IGNhbGN1bGF0ZVN0ZGV2ID0gKGhhc05lZ0luZiwgaGFzUG9zSW5mLCB2YXJpYW5jZSwgc2l6ZSkgPT4gewogIGlmIChoYXNOZWdJbmYgJiYgaGFzUG9zSW5mKSB7CiAgICByZXR1cm4gIk5hTiI7CiAgfQogIGlmIChoYXNOZWdJbmYgfHwgaGFzUG9zSW5mKSB7CiAgICByZXR1cm4gSW5maW5pdHk7CiAgfQogIHJldHVybiBNYXRoLnNxcnQodmFyaWFuY2UgLyBzaXplKTsKfTsKCmNvbnN0IHBhcnNlUHl0aG9uSW5maW5pdHlWYWx1ZXMgPSAoZGF0YSkgPT4KICBkYXRhLm1hcCgoaXRlbSkgPT4gewogICAgaWYgKGl0ZW0uY29sdW1uVHlwZSA9PT0gInN0YXR1cyIgfHwgIWl0ZW0uY29sdW1uLmVuZHNXaXRoKCJJbmYiKSkgewogICAgICByZXR1cm4gaXRlbTsKICAgIH0KICAgIC8vIFdlIGhhdmUgYSBweXRob24gSW5maW5pdHkgdmFsdWUgdGhhdCB3ZSB3YW50IHRvIHRyYW5zZmVyIHRvIGEgc3RyaW5nCiAgICAvLyB0aGF0IGNhbiBiZSBpbnRlcnByZXRlZCBhcyBhIEphdmFTY3JpcHQgSW5maW5pdHkgdmFsdWUKICAgIGl0ZW0uY29sdW1uID0gaXRlbS5jb2x1bW4ucmVwbGFjZSgiSW5mIiwgIkluZmluaXR5Iik7CiAgICByZXR1cm4gaXRlbTsKICB9KTsKCi8vIElmIGEgYnVja2V0IGNvbnRhaW5zIGEgTmFOIHZhbHVlLCB3ZSBjYW4gbm90IHBlcmZvcm0gYW55IHN0YXQgY2FsY3VsYXRpb24KY29uc3Qgc2hvdWxkU2tpcEJ1Y2tldCA9IChidWNrZXRNZXRhLCBrZXkpID0+IHsKICBpZiAoYnVja2V0TWV0YVtrZXldICYmIGJ1Y2tldE1ldGFba2V5XS5oYXNOYU4pIHsKICAgIHJldHVybiB0cnVlOwogIH0KICByZXR1cm4gZmFsc2U7Cn07CgovKioKICogRnVuY3Rpb24gdGhhdCBrZWVwcyB0cmFjayBvZiB0aGUgbWF4IGlucHV0dGVkIGRlY2ltYWwgbGVuZ3RoIG9mIGNvbHVtbiB2YWx1ZXMuCiAqIFRoaXMgaXMgdXNlZCBmb3IgY29uZGl0aW9uYWwgZm9ybWF0dGluZyBpbiB0aGUgc3RhdHMgbW9kdWxlIHRvIGRldGVybWluZSB0aGUgbWF4aW11bQogKiBhbW91bnQgb2YgcGFkZGVkIDBzCiAqCiAqIEB0eXBlZGVmIFVwZGF0ZU1heERlY2ltYWxNZXRhSW5mb1BhcmFtCiAqIEBwYXJhbSB7U3RyaW5nfSBjb2x1bW5UeXBlIC0gVGhlIHR5cGUgb2YgdGhlIGN1cnJlbnQgY29sdW1uCiAqIEBwYXJhbSB7T2JqZWN0fSBjb2x1bW4gLSBUaGUgY29sdW1uIG9iamVjdAogKiBAcGFyYW0ge09iamVjdH0gYnVja2V0IC0gVGhlIGN1cnJlbnQgc3RhdCBidWNrZXQgaW4gY29udGV4dAogKgogKiBAcGFyYW0ge1VwZGF0ZU1heERlY2ltYWxNZXRhSW5mb1BhcmFtfSBwYXJhbQogKi8KY29uc3QgdXBkYXRlTWF4RGVjaW1hbE1ldGFJbmZvID0gKHsgY29sdW1uVHlwZSwgY29sdW1uLCBidWNrZXQgfSkgPT4gewogIGlmIChjb2x1bW5UeXBlICE9PSAic3RhdHVzIikgewogICAgY29uc3QgWywgZGVjaW1hbF0gPSBjb2x1bW4uc3BsaXQoIi4iKTsKICAgIGJ1Y2tldC5tZXRhLm1heERlY2ltYWxzID0gTWF0aC5tYXgoCiAgICAgIGJ1Y2tldC5tZXRhLm1heERlY2ltYWxzLAogICAgICBkZWNpbWFsPy5sZW5ndGggPz8gMCwKICAgICk7CiAgfQp9OwoKLyoqCiAqIEB0eXBlZGVmICBNZXRhSW5mbwogKiAgQWRkaXRpb25hbCBtZXRhaW5mb3JtYXRpb24gdG8gYmUgdXNlZCBmb3IgcG9zdC1wcm9jZXNzaW5nIChsaWtlIG51bWJlciBmb3JtYXR0aW5nKQogKiBAcHJvcCB7c3RyaW5nfG51bGx9IHR5cGUgLSBUaGUgY29sdW1uIHR5cGUKICogQHByb3Age251bWJlcn0gbWF4RGVjaW1hbHMgLSBUaGUgbWF4aW11bSBhbW91bnQgb2YgZGVjaW1hbHMgYWNyb3NzIGFsbCBudW1iZXJzIGluIHRoZSBidWNrZXQKICogICAgICAgICAgICAgICAgICAgICAgICAgICAgICB1c2VkIGZvciBudW1iZXIgZm9ybWF0dGluZwogKi8KCi8qKgogKiBAdHlwZWRlZiBCdWNrZXQKICogU3RhdGlzdGljcyB0byBiZSBkaXNwbGF5ZWQgaW4gdGhlIHJlYWN0IHRhYmxlIGFyZSBjYWxjdWxhdGVkIGluIGJ1Y2tldHMsIGVhY2ggYnVja2V0IHJlcHJlc2VudGluZyBvbmUgInJvdyIgaW4gdGhlCiAqIHN0YXRpc3RpY3MgdGFibGUgKHRvdGFsLCBjb3JyZWN0LCBjb3JyZWN0IHRydWUsIGV0YykuCiAqIFRoaXMgb2JqZWN0IHN0b3JlcyBhbGwgYWNjdW11bGF0ZWQgaW5mb3JtYXRpb24gYWJvdXQgdGhpcyBidWNrZXQuCiAqCiAqIEBwcm9wIHtudW1iZXJ9IHN1bSAtIFRoZSBzdW0gb2YgdGhlIGJ1Y2tldAogKiBAcHJvcCB7bnVtYmVyfSBhdmcgLSBUaGUgYXZlcmFnZSBvZiB0aGUgYnVja2V0CiAqIEBwcm9wIHtudW1iZXJ8c3RyaW5nfSBtYXggLSBUaGUgbWF4aW1hbCB2YWx1ZSBvZiB0aGUgYnVja2V0CiAqIEBwcm9wIHtudW1iZXJ9IG1lZGlhbiAtIFRoZSBtZWRpYW4gdmFsdWUgb2YgdGhlIGJ1Y2tldAogKiBAcHJvcCB7bnVtYmVyfHN0cmluZ30gbWluIC0gVGhlIG1pbmltdW0gdmFsdWUgb2YgdGhlIGJ1Y2tldAogKiBAcHJvcCB7bnVtYmVyfSBzdGRldiAtIFRoZSBzdGFuZGFyZCBkZXZpYXRpb24gb2YgdGhlIGJ1Y2tldAogKiBAcHJvcCB7bnVtYmVyfSB2YXJpYW5jZSAtIFRoZSB2YXJpYW5jZSBvZiB0aGUgYnVja2V0CiAqIEBwcm9wIHtNZXRhSW5mb30gW21ldGFdIC0gTWV0YSBpbmZvcm1hdGlvbiBvZiB0aGUgYnVja2V0CiAqLwoKb25tZXNzYWdlID0gZnVuY3Rpb24gKGUpIHsKICBjb25zdCB7IGRhdGEsIHRyYW5zYWN0aW9uIH0gPSBlLmRhdGE7CgogIC8vIHRlbXBsYXRlCiAgLyoqIEBjb25zdCB7IEJ1Y2tldCB9ICovCiAgY29uc3QgZGVmYXVsdE9iaiA9IHsKICAgIHN1bTogMCwKICAgIGF2ZzogMCwKICAgIG1heDogIi1JbmZpbml0eSIsCiAgICBtZWRpYW46IDAsCiAgICBtaW46ICJJbmZpbml0eSIsCiAgICBzdGRldjogMCwKICAgIHZhcmlhbmNlOiAwLAogIH07CgogIC8qKiBAY29uc3Qge01ldGFJbmZvfSAqLwogIGNvbnN0IG1ldGFUZW1wbGF0ZSA9IHsKICAgIHR5cGU6IG51bGwsCiAgICBtYXhEZWNpbWFsczogMCwKICB9OwoKICAvLyBDb3B5IG9mIHRoZSB0ZW1wbGF0ZSB3aXRoIGFsbCB2YWx1ZXMgcmVwbGFjZWQgd2l0aCBOYU4KICBjb25zdCBuYW5PYmogPSB7IC4uLmRlZmF1bHRPYmogfTsKICBmb3IgKGNvbnN0IG9iaktleSBvZiBPYmplY3Qua2V5cyhuYW5PYmopKSB7CiAgICBuYW5PYmpbb2JqS2V5XSA9ICJOYU4iOwogIH0KCiAgbGV0IGNvcHkgPSBbLi4uZGF0YV0uZmlsdGVyKAogICAgKGkpID0+IGkgJiYgaS5jb2x1bW4gIT09IHVuZGVmaW5lZCAmJiBpLmNvbHVtbiAhPT0gbnVsbCwKICApOwogIGNvcHkgPSBwYXJzZVB5dGhvbkluZmluaXR5VmFsdWVzKGNvcHkpOwoKICBpZiAoY29weS5sZW5ndGggPT09IDApIHsKICAgIC8vIE5vIGRhdGEgdG8gcGVyZm9ybSBjYWxjdWxhdGlvbnMgd2l0aAogICAgcG9zdFJlc3VsdCh7IHRvdGFsOiB1bmRlZmluZWQgfSwgdHJhbnNhY3Rpb24pOwogICAgcmV0dXJuOwogIH0KCiAgY29uc3QgeyBjb2x1bW5UeXBlIH0gPSBjb3B5WzBdOwogIG1ldGFUZW1wbGF0ZS50eXBlID0gY29sdW1uVHlwZTsKCiAgY29weS5zb3J0KChhLCBiKSA9PiBhLmNvbHVtbiAtIGIuY29sdW1uKTsKCiAgLyoqIEB0eXBlIHtPYmplY3QuPHN0cmluZywgQnVja2V0Pn0gKi8KICBjb25zdCBidWNrZXRzID0ge307CiAgY29uc3QgYnVja2V0TmFOSW5mbyA9IHt9OyAvLyB1c2VkIHRvIHN0b3JlIE5hTiBpbmZvIG9mIGJ1Y2tldHMKCiAgLyoqIEB0eXBlIHtCdWNrZXR9ICovCiAgbGV0IHRvdGFsID0geyAuLi5kZWZhdWx0T2JqLCBpdGVtczogW10sIG1ldGE6IHsgLi4ubWV0YVRlbXBsYXRlIH0gfTsKCiAgdG90YWwubWF4ID0gY29weVtjb3B5Lmxlbmd0aCAtIDFdLmNvbHVtbjsKICB0b3RhbC5taW4gPSBjb3B5WzBdLmNvbHVtbjsKCiAgY29uc3QgdG90YWxOYU5JbmZvID0gewogICAgaGFzTmFOOiBjb3B5LnNvbWUoKGl0ZW0pID0+IHsKICAgICAgaWYgKGl0ZW0uY29sdW1uVHlwZSAhPT0gInN0YXR1cyIgJiYgaXNOYU4oaXRlbS5jb2x1bW4pKSB7CiAgICAgICAgcmV0dXJuIHRydWU7CiAgICAgIH0KICAgICAgcmV0dXJuIGZhbHNlOwogICAgfSksCiAgfTsKCiAgLy8gQnVja2V0IHNldHVwIHdpdGggc3VtIGFuZCBtaW4vbWF4CiAgZm9yIChjb25zdCBpdGVtIG9mIGNvcHkpIHsKICAgIGNvbnN0IGtleSA9IGAke2l0ZW0uY2F0ZWdvcnlUeXBlfV8ke2l0ZW0ucmVzdWx0VHlwZX1gOwogICAgY29uc3QgdG90YWxLZXkgPSBgJHtpdGVtLmNhdGVnb3J5VHlwZX1gOwogICAgY29uc3QgeyBjb2x1bW5UeXBlOiB0eXBlLCBjb2x1bW4sIGNvbHVtblRpdGxlOiB0aXRsZSB9ID0gaXRlbTsKICAgIGlmICghdG90YWwudGl0bGUpIHsKICAgICAgdG90YWwudGl0bGUgPSB0aXRsZTsKICAgIH0KICAgIGNvbnN0IGJ1Y2tldCA9IGJ1Y2tldHNba2V5XSB8fCB7CiAgICAgIC4uLmRlZmF1bHRPYmosCiAgICAgIHRpdGxlLAogICAgICBpdGVtczogW10sCiAgICAgIG1ldGE6IHsgLi4ubWV0YVRlbXBsYXRlIH0sCiAgICB9OwoKICAgIGNvbnN0IHN1YlRvdGFsQnVja2V0ID0gYnVja2V0c1t0b3RhbEtleV0gfHwgewogICAgICAuLi5kZWZhdWx0T2JqLAogICAgICB0aXRsZSwKICAgICAgaXRlbXM6IFtdLAogICAgICBtZXRhOiB7IC4uLm1ldGFUZW1wbGF0ZSB9LAogICAgfTsKCiAgICBjb25zdCBpdGVtSXNOYU4gPSB0eXBlICE9PSAic3RhdHVzIiAmJiBpc05hTihjb2x1bW4pOwoKICAgIC8vIGlmIG9uZSBpdGVtIGlzIE5hTiB3ZSBzdG9yZSB0aGF0IGluZm8gc28gd2UgY2FuIGRlZmF1bHQgYWxsCiAgICAvLyBjYWxjdWxhdGVkIHZhbHVlcyBmb3IgdGhpcyBidWNrZXQgdG8gTmFOCiAgICBpZiAoaXRlbUlzTmFOKSB7CiAgICAgIGJ1Y2tldE5hTkluZm9ba2V5XSA9IHsgaGFzTmFOOiB0cnVlIH07CiAgICAgIGJ1Y2tldE5hTkluZm9bdG90YWxLZXldID0geyBoYXNOYU46IHRydWUgfTsKCiAgICAgIC8vIHNldCBhbGwgdmFsdWVzIGZvciB0aGlzIGJ1Y2tldCB0byBOYU4KICAgICAgYnVja2V0c1trZXldID0geyAuLi5uYW5PYmosIHRpdGxlIH07CiAgICAgIGJ1Y2tldHNbdG90YWxLZXldID0geyAuLi5uYW5PYmosIHRpdGxlIH07CiAgICAgIGNvbnRpbnVlOwogICAgfQoKICAgIC8vIHdlIGNoZWNrIGlmIHdlIHNob3VsZCBza2lwIGNhbGN1bGF0aW9uIGZvciB0aGVzZSBidWNrZXRzCiAgICBjb25zdCBza2lwQnVja2V0ID0gc2hvdWxkU2tpcEJ1Y2tldChidWNrZXROYU5JbmZvLCBrZXkpOwogICAgY29uc3Qgc2tpcFN1YlRvdGFsID0gc2hvdWxkU2tpcEJ1Y2tldChidWNrZXROYU5JbmZvLCB0b3RhbEtleSk7CgogICAgaWYgKCFza2lwQnVja2V0KSB7CiAgICAgIGJ1Y2tldC5zdW0gPSBtYXliZUFkZChidWNrZXQuc3VtLCBjb2x1bW4sIHR5cGUpOwogICAgICB1cGRhdGVNYXhEZWNpbWFsTWV0YUluZm8oeyBjb2x1bW5UeXBlLCBjb2x1bW4sIGJ1Y2tldCB9KTsKICAgIH0KICAgIGlmICghc2tpcFN1YlRvdGFsKSB7CiAgICAgIHN1YlRvdGFsQnVja2V0LnN1bSA9IG1heWJlQWRkKHN1YlRvdGFsQnVja2V0LnN1bSwgY29sdW1uLCB0eXBlKTsKICAgICAgdXBkYXRlTWF4RGVjaW1hbE1ldGFJbmZvKHsgY29sdW1uVHlwZSwgY29sdW1uLCBidWNrZXQ6IHN1YlRvdGFsQnVja2V0IH0pOwogICAgfQogICAgaWYgKCF0b3RhbE5hTkluZm8uaGFzTmFOKSB7CiAgICAgIHRvdGFsLnN1bSA9IG1heWJlQWRkKHRvdGFsLnN1bSwgY29sdW1uLCB0eXBlKTsKICAgICAgdXBkYXRlTWF4RGVjaW1hbE1ldGFJbmZvKHsgY29sdW1uVHlwZSwgY29sdW1uLCBidWNrZXQ6IHRvdGFsIH0pOwogICAgfQoKICAgIGlmICghaXNOYU4oTnVtYmVyKGNvbHVtbikpKSB7CiAgICAgIGlmICghc2tpcEJ1Y2tldCkgewogICAgICAgIGJ1Y2tldC5tYXggPSBtYXRoU3RyaW5nTWF4KGJ1Y2tldC5tYXgsIGNvbHVtbik7CiAgICAgICAgYnVja2V0Lm1pbiA9IG1hdGhTdHJpbmdNaW4oYnVja2V0Lm1pbiwgY29sdW1uKTsKICAgICAgfQogICAgICBpZiAoIXNraXBTdWJUb3RhbCkgewogICAgICAgIHN1YlRvdGFsQnVja2V0Lm1heCA9IG1hdGhTdHJpbmdNYXgoc3ViVG90YWxCdWNrZXQubWF4LCBjb2x1bW4pOwogICAgICAgIHN1YlRvdGFsQnVja2V0Lm1pbiA9IG1hdGhTdHJpbmdNaW4oc3ViVG90YWxCdWNrZXQubWluLCBjb2x1bW4pOwogICAgICB9CiAgICB9CiAgICBpZiAoIXNraXBCdWNrZXQpIHsKICAgICAgdHJ5IHsKICAgICAgICBidWNrZXQuaXRlbXMucHVzaChpdGVtKTsKICAgICAgfSBjYXRjaCAoZSkgewogICAgICAgIGNvbnNvbGUuZSh7IGJ1Y2tldCwgYnVja2V0TWV0YTogYnVja2V0TmFOSW5mbywga2V5IH0pOwogICAgICB9CiAgICB9CiAgICBpZiAoIXNraXBTdWJUb3RhbCkgewogICAgICB0cnkgewogICAgICAgIHN1YlRvdGFsQnVja2V0Lml0ZW1zLnB1c2goaXRlbSk7CiAgICAgIH0gY2F0Y2ggKGUpIHsKICAgICAgICBjb25zb2xlLmUoeyBzdWJUb3RhbEJ1Y2tldCwgYnVja2V0TWV0YTogYnVja2V0TmFOSW5mbywgdG90YWxLZXkgfSk7CiAgICAgIH0KICAgIH0KCiAgICBidWNrZXRzW2tleV0gPSBidWNrZXQ7CiAgICBidWNrZXRzW3RvdGFsS2V5XSA9IHN1YlRvdGFsQnVja2V0OwogIH0KCiAgZm9yIChjb25zdCBbYnVja2V0LCB2YWx1ZXNdIG9mIE9iamVjdC5lbnRyaWVzKGJ1Y2tldHMpKSB7CiAgICBpZiAoc2hvdWxkU2tpcEJ1Y2tldChidWNrZXROYU5JbmZvLCBidWNrZXQpKSB7CiAgICAgIGNvbnRpbnVlOwogICAgfQogICAgY2FsY3VsYXRlTWVhbih2YWx1ZXMsIHZhbHVlcy5pdGVtcyk7CgogICAgY2FsY3VsYXRlTWVkaWFuKHZhbHVlcywgdmFsdWVzLml0ZW1zKTsKICAgIGJ1Y2tldHNbYnVja2V0XSA9IHZhbHVlczsKICB9CiAgY29uc3QgdG90YWxIYXNOYU4gPSB0b3RhbE5hTkluZm8uaGFzTmFOOwoKICBpZiAodG90YWxIYXNOYU4pIHsKICAgIHRvdGFsID0geyAuLi50b3RhbCwgLi4ubmFuT2JqIH07CiAgfSBlbHNlIHsKICAgIGNhbGN1bGF0ZU1lYW4odG90YWwsIGNvcHkpOwogICAgY2FsY3VsYXRlTWVkaWFuKHRvdGFsLCBjb3B5KTsKICB9CgogIGZvciAoY29uc3QgaXRlbSBvZiBjb3B5KSB7CiAgICBjb25zdCB7IGNvbHVtbiB9ID0gaXRlbTsKICAgIGlmIChpc05hTihOdW1iZXIoY29sdW1uKSkpIHsKICAgICAgY29udGludWU7CiAgICB9CiAgICBjb25zdCBudW1Db2wgPSBOdW1iZXIoY29sdW1uKTsKICAgIGNvbnN0IGtleSA9IGAke2l0ZW0uY2F0ZWdvcnlUeXBlfV8ke2l0ZW0ucmVzdWx0VHlwZX1gOwogICAgY29uc3QgdG90YWxLZXkgPSBgJHtpdGVtLmNhdGVnb3J5VHlwZX1gOwogICAgY29uc3QgYnVja2V0ID0gYnVja2V0c1trZXldOwogICAgY29uc3Qgc3ViVG90YWxCdWNrZXQgPSBidWNrZXRzW3RvdGFsS2V5XTsKICAgIGNvbnN0IGRpZmZCdWNrZXQgPSBudW1Db2wgLSBidWNrZXQuYXZnOwogICAgY29uc3QgZGlmZlN1YlRvdGFsID0gbnVtQ29sIC0gc3ViVG90YWxCdWNrZXQuYXZnOwogICAgY29uc3QgZGlmZlRvdGFsID0gbnVtQ29sIC0gdG90YWwuYXZnOwogICAgdG90YWwudmFyaWFuY2UgKz0gTWF0aC5wb3coZGlmZlRvdGFsLCAyKTsKICAgIGJ1Y2tldC52YXJpYW5jZSArPSBNYXRoLnBvdyhkaWZmQnVja2V0LCAyKTsKICAgIHN1YlRvdGFsQnVja2V0LnZhcmlhbmNlICs9IE1hdGgucG93KGRpZmZTdWJUb3RhbCwgMik7CiAgfQoKICBjb25zdCB0b3RhbEhhc05lZ0luZiA9IE51bWJlcih0b3RhbC5taW4pID09PSAtSW5maW5pdHk7CiAgY29uc3QgdG90YWxIYXNQb3NJbmYgPSBOdW1iZXIodG90YWwubWF4KSA9PT0gSW5maW5pdHk7CiAgdG90YWwuc3RkZXYgPSBjYWxjdWxhdGVTdGRldigKICAgIHRvdGFsSGFzTmVnSW5mLAogICAgdG90YWxIYXNQb3NJbmYsCiAgICB0b3RhbC52YXJpYW5jZSwKICAgIGNvcHkubGVuZ3RoLAogICk7CgogIGZvciAoY29uc3QgW2J1Y2tldCwgdmFsdWVzXSBvZiBPYmplY3QuZW50cmllcyhidWNrZXRzKSkgewogICAgaWYgKHNob3VsZFNraXBCdWNrZXQoYnVja2V0TmFOSW5mbywgYnVja2V0KSkgewogICAgICBmb3IgKGNvbnN0IFtrZXksIHZhbF0gb2YgT2JqZWN0LmVudHJpZXModmFsdWVzKSkgewogICAgICAgIHZhbHVlc1trZXldID0gdmFsLnRvU3RyaW5nKCk7CiAgICAgIH0KICAgICAgYnVja2V0c1tidWNrZXRdID0gdmFsdWVzOwogICAgICBjb250aW51ZTsKICAgIH0KICAgIGNvbnN0IHZhbHVlc0hhdmVOZWdJbmYgPSBOdW1iZXIodmFsdWVzLm1pbikgPT09IC1JbmZpbml0eTsKICAgIGNvbnN0IHZhbHVlc0hhdmVQb3NJbmYgPSBOdW1iZXIodG90YWwubWF4KSA9PT0gSW5maW5pdHk7CiAgICB2YWx1ZXMuc3RkZXYgPSBjYWxjdWxhdGVTdGRldigKICAgICAgdmFsdWVzSGF2ZU5lZ0luZiwKICAgICAgdmFsdWVzSGF2ZVBvc0luZiwKICAgICAgdmFsdWVzLnZhcmlhbmNlLAogICAgICB2YWx1ZXMuaXRlbXMubGVuZ3RoLAogICAgKTsKCiAgICBmb3IgKGNvbnN0IFtrZXksIHZhbF0gb2YgT2JqZWN0LmVudHJpZXModmFsdWVzKSkgewogICAgICBpZiAoa2V5ID09PSAibWV0YSIpIHsKICAgICAgICBjb250aW51ZTsKICAgICAgfQogICAgICB2YWx1ZXNba2V5XSA9IHZhbC50b1N0cmluZygpOwogICAgfQogICAgLy8gY2xlYXJpbmcgbWVtb3J5CiAgICBkZWxldGUgdmFsdWVzLml0ZW1zOwogICAgZGVsZXRlIHZhbHVlcy52YXJpYW5jZTsKICAgIGJ1Y2tldHNbYnVja2V0XSA9IHZhbHVlczsKICB9CgogIGZvciAoY29uc3QgW2tleSwgdmFsdWVdIG9mIE9iamVjdC5lbnRyaWVzKHRvdGFsKSkgewogICAgaWYgKGtleSA9PT0gIm1ldGEiKSB7CiAgICAgIGNvbnRpbnVlOwogICAgfQogICAgdG90YWxba2V5XSA9IHZhbHVlLnRvU3RyaW5nKCk7CiAgfQoKICBkZWxldGUgdG90YWwuaXRlbXM7CiAgZGVsZXRlIHRvdGFsLnZhcmlhbmNlOwoKICBjb25zdCByZXN1bHQgPSB7IGNvbHVtblR5cGUsIHRvdGFsLCAuLi5idWNrZXRzIH07CiAgcG9zdFJlc3VsdChyZXN1bHQsIHRyYW5zYWN0aW9uKTsKfTsKCmNvbnN0IHBvc3RSZXN1bHQgPSAocmVzdWx0LCB0cmFuc2FjdGlvbikgPT4gewogIC8vIGhhbmRsaW5nIGluIHRlc3RzCiAgaWYgKHRoaXMubW9ja2VkUG9zdE1lc3NhZ2UpIHsKICAgIHRoaXMubW9ja2VkUG9zdE1lc3NhZ2UoeyByZXN1bHQsIHRyYW5zYWN0aW9uIH0pOwogICAgcmV0dXJuOwogIH0KICBwb3N0TWVzc2FnZSh7IHJlc3VsdCwgdHJhbnNhY3Rpb24gfSk7Cn07Cg==",poolSize:8,name:"stats"}].map((function(e){for(var t=e.template,n=e.poolSize,i=e.name,r=[],s=function(e){var n=new Worker(t),i={worker:n,busy:!1};n.onmessage=function(e){return function(e,t){var n=e.data,i=n.transaction,r=n.result,s=Ve[i];t.busy=!1,s(r),delete Ve[i]}(e,i)},r.push(i)},l=0;l=s.length)break;r.push(c),a=s[++l]}}catch(d){o.e(d)}finally{o.f()}return r})),e.abrupt("return",Ee(r).map((function(e){var t=e.content.map((function(t,n){return a[n].map((function(t){return t[e.id]}))}));return(0,s.Z)((0,s.Z)({},e),{},{content:t})})));case 9:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),De=function(e){return e.map((function(e,t){return e.columns.map((function(e,n){var i=e.number_of_significant_digits;return new te(i,"".concat(t,"-").concat(n))}))}))},Pe=function(e,t,n){return function(n,i){var r=i.significantDigits,s=Number(n),l=n.split("."),a=(0,p.Z)(l,2),o=a[0],c=a[1];if(["sum","avg","stdev"].includes(e)){var u,d;if(G(r)&&"sum"!==e)return s.toFixed(2);var h=o.replace(/^0+/,""),f=c||"";""===h&&(f=f.replace(/^0+/,""));var g=t-(null!==(u=null===c||void 0===c?void 0:c.length)&&void 0!==u?u:0),m=r-(h.length+f.length),v=m>0,b=(null!==(d=null===c||void 0===c?void 0:c.length)&&void 0!==d?d:0)+m;if(g>0&&v&&"stdev"!==e)return g>m?s.toFixed(b):s.toFixed(t);if("avg"===e&&!v&&g<0&&"0"===n[n.length-1])return s.toFixed(t);if("stdev"===e&&v)return s.toFixed(b)}return n}},Me=function(e,t,n){var i=e.map((function(e,i){return e.map((function(e,r){var s,l={columnType:e.columnType},a=(0,f.Z)(n);try{for(a.s();!(s=a.n()).done;){var o,c=s.value,u=e[c];u&&(l[c]=u,null!==(o=null===u||void 0===u?void 0:u.sum)&&void 0!==o&&o&&t[i][r].addDataItem(u.sum))}}catch(d){a.e(d)}finally{a.f()}return l}))}));for(var r in t)for(var s in t[r])t[r][s]=t[r][s].build();return i.map((function(e,n){return e.map((function(e,i){e.columnType;var r=(0,v.Z)(e,Ke),s={};if(void 0!==r.total){for(var l=0,a=Object.entries(r);l
    - Click here to select columns - +
    - Click here to select columns - +
    - Click here to select columns - +
    - Click here to select columns - +
    - Click here to select columns - +
    - Click here to select columns - +
    - Click here to select columns - +
    - Click here to select columns - +
    - Click here to select columns - +
    - Click here to select columns - +
    - Click here to select columns - +
    - Click here to select columns - +
    - Click here to select columns - +
    - Click here to select columns - +
    - Click here to select columns - +
    - Click here to select columns - +
    - Click here to select columns - +
    - Click here to select columns - +
    - Click here to select columns - +
    - Click here to select columns - +
    - Click here to select columns - +
    - Click here to select columns - +
    - Click here to select columns - +
    - Click here to select columns - +
    - Click here to select columns - +
    - Click here to select columns - +
    - Click here to select columns - +
    - Click here to select columns - +
    - Click here to select columns - +
    - Click here to select columns - +
    - Click here to select columns - +
    - Click here to select columns - +
    - Click here to select columns - +
    - Click here to select columns - +
    - Click here to select columns - +
    - Click here to select columns - +
    - Click here to select columns - +
    - Click here to select columns - +
    - Click here to select columns - +
    - Click here to select columns - +
    - Click here to select columns - +
    - Click here to select columns - +
    - Click here to select columns - +
    - Click here to select columns - +
    - Click here to select columns - +
    - Click here to select columns - +
    - Click here to select columns - +
    - Click here to select columns - +
    - Click here to select columns - +
    Date: Mon, 29 Jul 2024 18:01:38 +0530 Subject: [PATCH 11/15] ui changes --- .../tablegenerator/react-table/src/App.scss | 44 ++++++++++++++++++- .../react-table/src/components/Overview.js | 2 +- .../src/components/StatisticsTable.js | 4 +- .../react-table/src/components/Summary.js | 32 +++++++------- .../react-table/src/components/Tooltip.js | 41 +++-------------- 5 files changed, 68 insertions(+), 55 deletions(-) diff --git a/benchexec/tablegenerator/react-table/src/App.scss b/benchexec/tablegenerator/react-table/src/App.scss index bdf10c2a1..2e838c964 100644 --- a/benchexec/tablegenerator/react-table/src/App.scss +++ b/benchexec/tablegenerator/react-table/src/App.scss @@ -11,6 +11,36 @@ body { overflow-x: hidden; } +// Tooltip styles +.infoTooltip { + visibility: hidden; + width: 250px; + text-align: center; + border-radius: 6px; + padding: 5px; + position: absolute; + z-index: 200; + left: 150%; + top: 50%; + transform: translateY(-50%); + margin-left: 10px; + opacity: 0; + transition: opacity 0.3s; + background-color: #f9f9f9; + color: white; + font-size: 12px; + font-weight: lighter; +} + +.infoTooltipContainer { + position: relative; + display: inline-block; +} + +.infoTooltipIcon { + cursor: pointer; +} + .App { // text-align: center; font-family: "Droid Sans", "Liberation Sans", Ubuntu, "Trebuchet MS", Tahoma, @@ -430,7 +460,18 @@ $content-height: calc(100vh - 43px); // height of .menu sums up to 43px #benchmark_setup { width: 100%; overflow-x: scroll; - margin: 40px 0; + + .fixedRowTitle { + text-align: left; + display: flex; + align-items: center; + padding-left: 8px; + } + + .stickCheckbox { + position: sticky; + left: 0; + } table { border-collapse: collapse; @@ -489,6 +530,7 @@ $content-height: calc(100vh - 43px); // height of .menu sums up to 43px } } } + #statistics { #statistics-placeholder { padding: 1em; diff --git a/benchexec/tablegenerator/react-table/src/components/Overview.js b/benchexec/tablegenerator/react-table/src/components/Overview.js index a37ac9685..c0fe56201 100644 --- a/benchexec/tablegenerator/react-table/src/components/Overview.js +++ b/benchexec/tablegenerator/react-table/src/components/Overview.js @@ -41,7 +41,7 @@ import deepEqual from "deep-equal"; require("setimmediate"); // provides setImmediate and clearImmediate const menuItems = [ - { key: "summary", title: "Summary", path: "/" }, + { key: "summary", title: "Setup & Statistics", path: "/" }, { key: "table", title: "Table", path: "/table" }, { key: "quantile", title: "Quantile Plot", path: "/quantile" }, { key: "scatter", title: "Scatter Plot", path: "/scatter" }, diff --git a/benchexec/tablegenerator/react-table/src/components/StatisticsTable.js b/benchexec/tablegenerator/react-table/src/components/StatisticsTable.js index d8a7e6e64..94d1a069d 100644 --- a/benchexec/tablegenerator/react-table/src/components/StatisticsTable.js +++ b/benchexec/tablegenerator/react-table/src/components/StatisticsTable.js @@ -47,7 +47,6 @@ const StatisticsTable = ({ switchToQuantile, tableData, hiddenCols }) => { alignContent: "center", alignItems: "center", backgroundColor: "#EEEEEE", - fontWeight: "bold", }} onClick={(_) => switchToQuantile(column)} /> @@ -130,6 +129,9 @@ const StatisticsTable = ({ switchToQuantile, tableData, hiddenCols }) => { index !== headerGroup.headers.length - 1 ? "1px solid grey" : "none", + borderTop: "2px solid grey", + borderBottom: "2px solid grey", + height: "48px", }, })} > diff --git a/benchexec/tablegenerator/react-table/src/components/Summary.js b/benchexec/tablegenerator/react-table/src/components/Summary.js index 43a0e94c5..4c3314bf5 100644 --- a/benchexec/tablegenerator/react-table/src/components/Summary.js +++ b/benchexec/tablegenerator/react-table/src/components/Summary.js @@ -137,8 +137,8 @@ const Summary = ({ if (tableHeaderRow) { colArray.push({ accessor: tableHeaderRow.id, - // If the header is "Tool" and there are hidden runsets, add a hint Header: + // If the header is "Tool" and there are hidden runsets, add a hint hiddenRunsetIdx.length !== 0 && tableHeaderRow.name === "Tool" ? ( - ), + Header: , id: "columnselect", accessor: "columnselect", statisticTable: true, @@ -248,12 +238,19 @@ const Summary = ({ useResizeColumns, ); + const selectColumnHeaderStyles = { + height: "48px", + borderTop: "2px solid grey", + borderBottom: "2px solid grey", + }; + return (
    -

    Benchmark Setup

    -
    -
    + @@ -274,7 +271,10 @@ const Summary = ({ {col.render("Header")} diff --git a/benchexec/tablegenerator/react-table/src/components/Tooltip.js b/benchexec/tablegenerator/react-table/src/components/Tooltip.js index bac05642c..18060173f 100644 --- a/benchexec/tablegenerator/react-table/src/components/Tooltip.js +++ b/benchexec/tablegenerator/react-table/src/components/Tooltip.js @@ -9,54 +9,23 @@ import React from "react"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { faInfoCircle } from "@fortawesome/free-solid-svg-icons"; -const tooltipStyles = { - visibility: "hidden", - width: "250px", - textAlign: "center", - borderRadius: "6px", - padding: "5px", - position: "absolute", - zIndex: 200, - left: "150%", // Position the tooltip to the right of the icon - top: "50%", - transform: "translateY(-50%)", // Center the tooltip vertically - marginLeft: "10px", - opacity: 0, - transition: "opacity 0.3s", - backgroundColor: "#f9f9f9", - color: "#000", - fontSize: "12px", // Smaller font size - fontWeight: "lighter", -}; - -const iconContainerStyles = { - position: "relative", - display: "inline-block", -}; - -const iconStyles = { - cursor: "pointer", -}; - const IconWithTooltip = ({ message }) => { return (
    { - const tooltip = e.currentTarget.querySelector(".tooltip"); + const tooltip = e.currentTarget.querySelector(".infoTooltip"); tooltip.style.visibility = "visible"; tooltip.style.opacity = 1; }} onMouseLeave={(e) => { - const tooltip = e.currentTarget.querySelector(".tooltip"); + const tooltip = e.currentTarget.querySelector(".infoTooltip"); tooltip.style.visibility = "hidden"; tooltip.style.opacity = 0; }} > - - - {message} - + + {message}
    ); }; From 531a5a02b7517dccff0138cce953e434bff02a18 Mon Sep 17 00:00:00 2001 From: EshaanAgg <96648934+EshaanAgg@users.noreply.github.com> Date: Mon, 29 Jul 2024 18:02:24 +0530 Subject: [PATCH 12/15] build and test updates --- .../react-table/build/main.min.css | 2 +- .../react-table/build/main.min.js | 2 +- .../StatsCalculation.test.js.snap | 5384 ++++++++++------- .../tests/__snapshots__/Summary.test.js.snap | 2550 +++++--- 4 files changed, 4836 insertions(+), 3102 deletions(-) diff --git a/benchexec/tablegenerator/react-table/build/main.min.css b/benchexec/tablegenerator/react-table/build/main.min.css index 2b487b320..7953b5461 100644 --- a/benchexec/tablegenerator/react-table/build/main.min.css +++ b/benchexec/tablegenerator/react-table/build/main.min.css @@ -1 +1 @@ -body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;margin:0}code{font-family:source-code-pro,Menlo,Monaco,Consolas,Courier New,monospace}body{overflow-x:hidden}.App{font-family:Droid Sans,Liberation Sans,Ubuntu,Trebuchet MS,Tahoma,Arial,Verdana,sans-serif}.correct{color:green}.error{color:#f0f}.correct-unconfirmed,.unknown{color:#71bcff}.wrong{color:red}.link{color:#71bcff;text-decoration:underline}.btn,.link{cursor:pointer}.btn{background-size:300% 100%;box-shadow:0 4px 12px 0 rgba(113,188,255,.2);height:35px;margin:0 10px 9px 0;text-align:center;transition:all .4s ease-in-out}.btn:hover{background:#71bcff}.btn:disabled{cursor:default}.btn:disabled,.btn:disabled:hover{background:#a9a9a9}.btn-apply{background:#71bcff;box-shadow:0 4px 12px 0 rgba(113,188,255,.5);margin-left:100px}.btn-apply:hover{background:#fff}.selectColumns{background-color:#fff;cursor:pointer;font-weight:700}.selectColumns:hover{background-color:#ccc}.header__tool-infos{font-weight:700}.table{white-space:nowrap}.table .table-container{min-width:-webkit-fit-content!important;min-width:-moz-fit-content!important;min-width:fit-content!important}.table .table-content{overflow:auto}.table.sticky .td,.table.sticky .th{background:#fff}.table.sticky .header{position:-webkit-sticky;position:sticky;text-align:center;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}.table.sticky .body{position:relative;z-index:0}.table.sticky [data-sticky-td]{position:-webkit-sticky;position:sticky}.table.sticky [data-sticky-last-left-td]{border-right:1px solid #ccc}.table.sticky [data-sticky-first-right-td]{border-left:1px solid #ccc}.table .table-header .th.outer{background-color:#f7f7f7}.table .table-header .clickable{display:flex;justify-content:center}.table .table-header .clickable:hover{background-color:#ccc;cursor:pointer}.table .td,.table .th{overflow:hidden}.table .resizer{background-color:transparent!important;bottom:0;display:inline-block;position:absolute;right:0;top:0;-webkit-transform:translateX(50%);transform:translateX(50%);width:36px;z-index:2}.table .resizer.isResizing{background:red}.table .separator{background:#adadad!important;margin:0!important;max-width:2px;padding:0!important}.overview{background:#fff}.overview .filterBox{background-color:#fff;box-shadow:0 3px 6px 0 rgba(0,0,0,.15);display:flex;flex-direction:column;height:100vh;max-width:-webkit-max-content;max-width:max-content;min-width:-webkit-min-content;min-width:min-content;position:absolute;right:0;transition:all .5s ease-in-out;width:40vw;z-index:9998}.overview .filterBox .filter-card{-webkit-touch-callout:none;box-shadow:0 3px 6px 0 rgba(0,0,0,.15);margin-top:18px;-webkit-user-select:none;user-select:none;width:100%}.overview .filterBox .filter-card--container{margin-bottom:8px;overflow-y:scroll}.overview .filterBox .filter-card--body{display:flex;flex-direction:column;list-style:none;margin:10px 25px;text-align:left}.overview .filterBox .filter-card--body--list{list-style:none}.overview .filterBox .filter-card--body--empty-rows{margin-bottom:1em}.overview .filterBox .filter-card--body .task-id-filters{align-items:center;display:flex;flex-direction:column;justify-content:space-between}.overview .filterBox .filter-card--body .task-id-filters input{margin-bottom:15px}.overview .filterBox .filter-card--range-container{display:flex;justify-content:space-between}.overview .filterBox .filter-card--range-input-fields{grid-gap:1rem;display:grid}.overview .filterBox .filter-card--range-input-fields input{width:93%}.overview .filterBox .filter-card--range-input-fields .range-input-fields--min{grid-column-end:2;grid-column-start:1}.overview .filterBox .filter-card--range-input-fields .range-input-fields--max{grid-column-end:3;grid-column-start:2}.overview .filterBox .filter-card--header{align-items:center;background-color:#b8ddff;display:flex;min-height:35px;position:relative;width:100%}.overview .filterBox .filter-card--header .filter-selection{margin-left:25px}.overview .filterBox .filter-card--header .check-button{color:green;margin-left:15px}.overview .filterBox .filter-card--header .delete-button{cursor:pointer;position:absolute;right:12px}.overview .filterBox .filter-card--header .title{font-size:18px;margin:0 0 0 25px;padding:3px}.overview .filterBox--hidden{right:-100vw}.overview .filterBox--header{align-items:center;background-color:#88c7ff;display:flex;height:35px;padding:5px 20px}.overview .filterBox--header--icon{cursor:pointer;margin-right:15px}.overview .filterBox--header--reset{background-color:hsla(0,0%,100%,.5);border:none;cursor:auto;height:100%}.overview .filterBox--header--reset-icon{cursor:pointer;position:absolute;right:20px}.overview .filterBox--header--reset:disabled{background:none;border:none;color:#000;display:inline-block;font-weight:600}.overview .filterBox--header--reset:disabled .hide{display:none}.overview .filterBox--container{align-items:center;display:flex;flex-direction:column;margin-left:20px;margin-right:20px;text-align:center}.overview .filterBox--container h4{font-size:18px;margin-bottom:0;margin-top:2.5rem}.overview .filterBox--container .hidden{display:none!important}.overview .filterBox--container .filter-add-button{align-items:center;background-color:#71bcff;border-radius:28px;box-shadow:0 3px 6px 0 rgba(0,0,0,.15);color:#fff;cursor:pointer;display:flex;flex-direction:row;justify-content:center;min-height:23px;min-width:23px;padding:5px;transition:all .5s ease-in-out}.overview .menu{align-items:flex-start;background:#71bcff;display:flex;font-weight:700;padding:10px 10px 0;width:calc(100% - 20px);z-index:100}.overview .menu .menu-item{background:hsla(0,0%,100%,.5);border-radius:8px 8px 0 0;color:#000;font-size:14px;height:17px;margin-right:1px;padding:8px 13px;text-decoration:none;white-space:nowrap}.overview .menu .menu-item.selected{background:#fff}.overview .route-container{max-height:calc(100vh - 43px);overflow:auto}.overview button{cursor:pointer}.overview button:disabled{display:none}.overview button.reset{background:hsla(0,0%,100%,.5);border:none;border-radius:0 0 8px 8px;color:#000;display:block;font-size:12px;padding:5px;position:fixed;right:10px;top:0}.overview button.reset .filter-icon{margin-left:10px;margin-right:5px}.overview button.reset .highlight{font-weight:700}.overview button.reset:disabled{cursor:auto}.overview button.reset:disabled .hide{visibility:hidden}#summary{padding-top:30px;text-align:center}#summary #benchmark_setup{margin:40px 0;overflow-x:scroll;width:100%}#summary #benchmark_setup table{border-collapse:collapse;width:100%}#summary #benchmark_setup table td,#summary #benchmark_setup table th{border:1px solid #ddd;padding:8px}#summary #benchmark_setup table .options ul{margin:0;padding:0 0 0 17px}#summary #benchmark_setup table .options li{font-size:9pt;list-style:none;text-align:left}#summary #benchmark_setup table .benchmark,#summary #benchmark_setup table th{font-weight:700}#summary #benchmark_setup table th{background-color:#fff}#summary #benchmark_setup table th.sticky{left:0;position:-webkit-sticky!important;position:sticky!important;z-index:11}#summary #benchmark_setup table tr:nth-child(2n),#summary #benchmark_setup table tr:nth-child(2n) th{background-color:#eee}#summary #benchmark_setup table tr:hover{background-color:#ddd}#summary #benchmark_setup table th{padding-bottom:8px;padding-top:8px;text-align:left;width:14vw}#summary #statistics #statistics-placeholder{background-color:#f7f7f7;border-bottom:1px solid #adadad;border-top:1px solid #adadad;padding:1em}#summary #statistics #statistics-table>.table .table-content .td{padding:8px 5px}#summary #statistics #statistics-table>.table .table-content .table-header .tr:nth-of-type(2){box-shadow:0 2px 15px 0 rgba(0,0,0,.15);position:relative;z-index:10}#summary #statistics #statistics-table>.table .table-content .table-header .tr .th{padding:5px}#summary #statistics #statistics-table>.table .table-content .table-header .tr .th:not(:first-of-type){border-right:1px solid rgba(0,0,0,.05)}#summary #statistics #statistics-table>.table .table-content .table-header .tr .th.outer{text-overflow:ellipsis}#summary #statistics #statistics-table>.table .table-content .table-header .tr .th .header-data{height:100%}#summary #statistics #statistics-table>.table .table-content .table-header .tr .th .selectColumns{border:#555;overflow:hidden;text-overflow:ellipsis}#summary #statistics #statistics-table>.table .table-content .table-body .td .cell{padding:0;text-align:right}#summary #statistics #statistics-table>.table .table-content .table-body .row-title{font-weight:700;overflow:hidden;text-align:left;text-overflow:ellipsis}#summary #statistics #statistics-table>.table .table-content .table-body .tr{border-bottom:1px solid #adadad}#summary p{margin-top:40px}.main-table .table{display:flex;flex-direction:column;height:calc(100vh - 43px)}.main-table .table a{display:block;text-decoration:none}.main-table .table a:hover{background-color:#ccc}.main-table .table a:focus{outline:1px dotted red}.main-table .table .tr .td:first-of-type,.main-table .table .tr .th:first-of-type{border-right:1px solid #ccc}.main-table .table .fixed-task-header{justify-content:space-around;margin:auto;width:33%}.main-table .table .fixed-task-header input{width:100%}.main-table .table .table-content{flex:auto 1;overflow-y:scroll}.main-table .table .table-content .td{border-right:1px solid rgba(0,0,0,.02)}.main-table .table .table-content .td.reg-column{align-items:center;display:flex;justify-content:flex-end}.main-table .table .table-content .td.reg-column a{width:100%}.main-table .table .table-content .td.reg-column div{padding:5px 3px}.main-table .table .table-content .table-header{position:-webkit-sticky;position:sticky;top:0;z-index:3}.main-table .table .table-content .table-header>.tr:first-of-type{border-bottom:1px solid #f2f2f2}.main-table .table .table-content .table-header .shadow-container{box-shadow:0 2px 15px 0 rgba(0,0,0,.15);position:relative;z-index:10}.main-table .table .table-content .table-header .shadow-container .th:not(:first-of-type){border-right:1px solid rgba(0,0,0,.05)}.main-table .table .table-content .table-header .tr.filter{border-bottom:1px solid rgba(0,0,0,.05)}.main-table .table .table-content .th.header{position:relative}.main-table .table .table-content .th.header:last-child{overflow:hidden}.main-table .table .table-content .th.header.fixed-task,.main-table .table .table-content .th.header.reg-column{font-weight:400}.main-table .table .table-content .th.header:not(.separator):not(.filter)>*{overflow:hidden;padding:5px;text-overflow:ellipsis}.main-table .table .table-content .th.header .header-sort-container{height:calc(100% - 10px)}.main-table .table .table-content .th.header .header-sort-container.sorted-asc{box-shadow:inset 0 3px 0 0 rgba(0,0,0,.6)}.main-table .table .table-content .th.header .header-sort-container.sorted-desc{box-shadow:inset 0 -3px 0 0 rgba(0,0,0,.6)}.main-table .table .table-content .th.header.filter{padding:5px}.main-table .table .table-content .th.header.filter .filter-field{background:#fff;border:1px solid rgba(0,0,0,.1);border-radius:3px;font-size:inherit;padding:5px 7px;text-align:right;width:100%}.main-table .table .table-content .th.header.filter .filter-field *{text-align:left}.main-table .table .table-content .table-body span{text-align:center}.main-table .table .table-content .table-body .tr{border-bottom:1px solid #f2f2f2}.main-table .table .table-content .table-body .tr:hover .td{background:#f2f2f2}.main-table .table .table-content .table-body .row_id:not(:first-child){border-left:1px solid #000;color:#484848;font-size:9pt;height:100%;margin-left:5px;padding-left:5px}.main-table .table .table-content .table-body .td{padding:1px;text-align:right}.main-table .table .table-content .table-body .td>a{margin-left:1ex;padding:5px 3px}.main-table .table .table-content .table-body .row__name--cellLink{color:#000}.main-table .table .pagination{align-items:stretch;align-items:center;background:#fff;border-top:2px solid rgba(0,0,0,.1);bottom:0;box-shadow:0 0 15px 0 rgba(0,0,0,.1);display:flex;flex-wrap:wrap;justify-content:space-between;padding:3px;position:-webkit-sticky;position:sticky;z-index:99;z-index:1}.main-table .table .pagination .pagination-container{align-items:center;display:flex;height:100%;justify-content:space-around}.main-table .table .pagination .pagination-container#pagination-next,.main-table .table .pagination .pagination-container#pagination-previous{flex:1 1}.main-table .table .pagination .pagination-container#pagination-next .pagination-element,.main-table .table .pagination .pagination-container#pagination-previous .pagination-element{align-items:center;display:flex;height:100%;justify-content:center;width:100%}.main-table .table .pagination .pagination-container#pagination-center{display:flex;flex:1.5 1;flex-direction:row;flex-wrap:wrap;justify-content:space-around}.main-table .table .pagination .pagination-container#pagination-center input,.main-table .table .pagination .pagination-container#pagination-center select{background:#fff;border:1px solid rgba(0,0,0,.1)}.main-table .table .pagination .pagination-container#pagination-center .pagination-element{margin:3px 10px}.main-table .table .pagination .pagination-container .pagination-element{border-radius:3px;text-align:center}.main-table .table .pagination .pagination-container .pagination-element.button{background:rgba(0,0,0,.1);border-radius:3px;color:rgba(0,0,0,.6);cursor:pointer;outline-width:0;transition:all .1s ease}.main-table .table .pagination .pagination-container .pagination-element.button.disabled{cursor:default;opacity:.5}.main-table .table .pagination .pagination-container .pagination-element.button:not(.disabled):hover{background:rgba(0,0,0,.3);color:#fff}.main-table .table .pagination .pagination-container .pagination-element#goto-page-element{white-space:nowrap}.main-table .table .pagination .pagination-container .pagination-element#goto-page-element input{border-radius:3px;font-size:inherit;margin:0 5px;padding:5px 7px;text-align:center;width:55px}.main-table .table .pagination .pagination-container .pagination-element#set-page-element select{border-radius:3px;font-size:inherit;padding:5px 7px}.main-table .aborted{text-align:center}.main-table .aborted:after{content:"—"}.main-table input::-webkit-input-placeholder{color:#d3d3d3}.main-table input::placeholder{color:#d3d3d3}.quantilePlot{margin:20px}.quantilePlot .rv-discrete-color-legend{max-width:50vw;width:-webkit-max-content;width:max-content}.quantilePlot .rv-discrete-color-legend-item.clickable{padding:3px 10px;white-space:normal}.quantilePlot .rv-discrete-color-legend-item.clickable:hover{background:#ccc}.quantilePlot .settings-legend-container{justify-content:space-between}.quantilePlot .settings-container{flex-grow:0;min-width:0}.quantilePlot .settings-border-container,.quantilePlot .settings-subcontainer{justify-content:left;min-width:0}.quantilePlot .settings-subcontainer.flexible-width{flex:1 1 50%}.quantilePlot .setting.flexible-width{flex:1 0 60%;max-width:-webkit-max-content;max-width:max-content;min-width:0}.quantilePlot .setting.flexible-width .setting-select{min-width:120px}.scatterPlot{margin:20px;text-align:center}.scatterPlot__select select{margin:10px}.scatterPlot .middle-line .rv-xy-plot__axis__line{stroke:#71bcff}.scatterPlot__plot{margin:auto}.scatterPlot button{margin:10px}.scatterPlot .settings-container{margin-right:0}.scatterPlot .settings-subcontainer.flexible-width{flex:1 1 40vw;max-width:-webkit-max-content;max-width:max-content;min-width:0}.scatterPlot .settings-subcontainer.flexible-width .setting{flex:1 1 45%;max-width:-webkit-max-content;max-width:max-content;min-width:250px}.scatterPlot .settings-subcontainer.flexible-width .setting .setting-select{min-width:150px}.scatterPlot .settings-subcontainer.flexible-width .setting.icon{min-width:0}.scatterPlot .settings-subcontainer.flexible-width .setting.icon:hover{cursor:pointer}.settings-legend-container{display:flex}.settings-container{align-items:flex-start;display:flex;flex-grow:1;justify-content:center;margin-right:1em}.settings-border-container{border:1px solid rgba(0,0,0,.3);display:inline-flex;flex-wrap:wrap;justify-content:center;max-width:100%;padding:.5em}.settings-subcontainer{flex-wrap:wrap;justify-content:center}.setting,.settings-subcontainer{align-items:center;display:flex}.setting-label{padding:.4em 1em;white-space:nowrap}.setting-label.with-tooltip{text-decoration:underline}.setting-label.with-tooltip:hover{cursor:help}.setting-select{border:1px solid #c3c3c3;border-radius:3px;cursor:pointer;height:25px;margin:.4em 1em .4em 0;padding-left:10px}.setting-button{height:25px;margin:.4em 1em}.setting .disabled,.setting.disabled{color:rgba(0,0,0,.4)}.setting .disabled .setting-select,.setting.disabled .setting-select{cursor:not-allowed}.rv-discrete-color-legend{border:1px solid rgba(0,0,0,.3)}.rv-discrete-color-legend-item.clickable{white-space:nowrap}.plot__noresults{left:50%;position:absolute;top:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.info{margin:40px}.info-header{display:flex;justify-content:space-between;margin:40px 0}.info-header h1{margin:0}.info-header span{border:1px solid #71bcff;font-size:9pt;padding:5px}.ReactModal__Body--open{overflow:hidden;-webkit-user-select:none;user-select:none}.ReactModal__Overlay{z-index:900}.overlay{background:#fff;border:5px solid gray;border-radius:5px;bottom:40px;left:20px;overflow:scroll;position:fixed;right:20px;top:80px;-webkit-user-select:text;user-select:text}.overlay h1{margin-bottom:40px}.overlay td,.overlay th{background:#fff;color:#8e8d8d;cursor:pointer;text-align:center}.overlay td label,.overlay th label{cursor:pointer}.overlay td.checked,.overlay th.checked{color:#000}.overlay th:first-child{background:#fff}.overlay td:first-child{text-align:left;width:30%}.overlay input{display:none}.overlay__buttons{display:flex;justify-content:center;width:100%}.overlay__buttons .btn{margin-top:50px;width:20vw}.overlay th{border-bottom:1px solid #000}.overlay .closing{border-radius:4px;cursor:pointer;font-size:120%}.overlay .closing:hover{background:#000;color:#fff}.overlay.second-level .link-overlay-header-container{background-color:#fff}.overlay.second-level .link-overlay-text{margin-top:0}.overlay .link-overlay-file-link{background-color:inherit;border:none;color:blue;font:inherit;text-decoration:underline}.overlay .link-overlay-file-link:hover{cursor:pointer}.overlay .link-overlay-header-container{display:flex;flex-direction:row-reverse;height:30px;justify-content:space-between;left:0;padding:10px 10px 0;pointer-events:none;position:-webkit-sticky;position:sticky;top:0}.overlay .link-overlay-header-container>*{pointer-events:auto}.overlay .link-overlay-back-button:hover{cursor:pointer}.overlay .link-overlay-back-icon{margin-right:1em}.overlay .link-overlay-text{margin-top:-30px;padding:0 10px 10px}.rt-td{text-align:left}.ReactTable{border:none!important}.tooltip{border-bottom:1px dotted #000;display:inline-block;position:relative;z-index:10}.tooltip .tooltiptext{background-color:#555;border-radius:6px;color:#fff;left:50%;margin-left:-60px;opacity:0;padding:5px 0;position:absolute;text-align:center;top:100%;transition:opacity .3s;visibility:hidden;width:120px;z-index:999999}.tooltip .tooltiptext:after{border:5px solid transparent;border-bottom-color:#000;bottom:100%;content:" ";left:50%;margin-left:-5px;position:absolute}.tooltip:hover .tooltiptext{opacity:1;visibility:visible}@media only screen and (max-width:700px){.quantilePlot .settings-legend-container{flex-wrap:wrap;justify-content:center}.quantilePlot .setting,.quantilePlot .setting-select,.quantilePlot .settings-subcontainer{flex-grow:1}.quantilePlot .setting.flexible-width{max-width:90vw;min-width:18em}.quantilePlot .setting.flexible-width .setting-select{max-width:75vw}.quantilePlot .settings-container{margin-right:0}.quantilePlot .rv-discrete-color-legend{margin:1em 0;max-width:95vw}} \ No newline at end of file +body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;margin:0}code{font-family:source-code-pro,Menlo,Monaco,Consolas,Courier New,monospace}body{overflow-x:hidden}.infoTooltip{background-color:#f9f9f9;border-radius:6px;color:#fff;font-size:12px;font-weight:lighter;left:150%;margin-left:10px;opacity:0;padding:5px;position:absolute;text-align:center;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);transition:opacity .3s;visibility:hidden;width:250px;z-index:200}.infoTooltipContainer{display:inline-block;position:relative}.infoTooltipIcon{cursor:pointer}.App{font-family:Droid Sans,Liberation Sans,Ubuntu,Trebuchet MS,Tahoma,Arial,Verdana,sans-serif}.correct{color:green}.error{color:#f0f}.correct-unconfirmed,.unknown{color:#71bcff}.wrong{color:red}.link{color:#71bcff;text-decoration:underline}.btn,.link{cursor:pointer}.btn{background-size:300% 100%;box-shadow:0 4px 12px 0 rgba(113,188,255,.2);height:35px;margin:0 10px 9px 0;text-align:center;transition:all .4s ease-in-out}.btn:hover{background:#71bcff}.btn:disabled{cursor:default}.btn:disabled,.btn:disabled:hover{background:#a9a9a9}.btn-apply{background:#71bcff;box-shadow:0 4px 12px 0 rgba(113,188,255,.5);margin-left:100px}.btn-apply:hover{background:#fff}.selectColumns{background-color:#fff;cursor:pointer;font-weight:700}.selectColumns:hover{background-color:#ccc}.header__tool-infos{font-weight:700}.table{white-space:nowrap}.table .table-container{min-width:-webkit-fit-content!important;min-width:-moz-fit-content!important;min-width:fit-content!important}.table .table-content{overflow:auto}.table.sticky .td,.table.sticky .th{background:#fff}.table.sticky .header{position:-webkit-sticky;position:sticky;text-align:center;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}.table.sticky .body{position:relative;z-index:0}.table.sticky [data-sticky-td]{position:-webkit-sticky;position:sticky}.table.sticky [data-sticky-last-left-td]{border-right:1px solid #ccc}.table.sticky [data-sticky-first-right-td]{border-left:1px solid #ccc}.table .table-header .th.outer{background-color:#f7f7f7}.table .table-header .clickable{display:flex;justify-content:center}.table .table-header .clickable:hover{background-color:#ccc;cursor:pointer}.table .td,.table .th{overflow:hidden}.table .resizer{background-color:transparent!important;bottom:0;display:inline-block;position:absolute;right:0;top:0;-webkit-transform:translateX(50%);transform:translateX(50%);width:36px;z-index:2}.table .resizer.isResizing{background:red}.table .separator{background:#adadad!important;margin:0!important;max-width:2px;padding:0!important}.overview{background:#fff}.overview .filterBox{background-color:#fff;box-shadow:0 3px 6px 0 rgba(0,0,0,.15);display:flex;flex-direction:column;height:100vh;max-width:-webkit-max-content;max-width:max-content;min-width:-webkit-min-content;min-width:min-content;position:absolute;right:0;transition:all .5s ease-in-out;width:40vw;z-index:9998}.overview .filterBox .filter-card{-webkit-touch-callout:none;box-shadow:0 3px 6px 0 rgba(0,0,0,.15);margin-top:18px;-webkit-user-select:none;user-select:none;width:100%}.overview .filterBox .filter-card--container{margin-bottom:8px;overflow-y:scroll}.overview .filterBox .filter-card--body{display:flex;flex-direction:column;list-style:none;margin:10px 25px;text-align:left}.overview .filterBox .filter-card--body--list{list-style:none}.overview .filterBox .filter-card--body--empty-rows{margin-bottom:1em}.overview .filterBox .filter-card--body .task-id-filters{align-items:center;display:flex;flex-direction:column;justify-content:space-between}.overview .filterBox .filter-card--body .task-id-filters input{margin-bottom:15px}.overview .filterBox .filter-card--range-container{display:flex;justify-content:space-between}.overview .filterBox .filter-card--range-input-fields{grid-gap:1rem;display:grid}.overview .filterBox .filter-card--range-input-fields input{width:93%}.overview .filterBox .filter-card--range-input-fields .range-input-fields--min{grid-column-end:2;grid-column-start:1}.overview .filterBox .filter-card--range-input-fields .range-input-fields--max{grid-column-end:3;grid-column-start:2}.overview .filterBox .filter-card--header{align-items:center;background-color:#b8ddff;display:flex;min-height:35px;position:relative;width:100%}.overview .filterBox .filter-card--header .filter-selection{margin-left:25px}.overview .filterBox .filter-card--header .check-button{color:green;margin-left:15px}.overview .filterBox .filter-card--header .delete-button{cursor:pointer;position:absolute;right:12px}.overview .filterBox .filter-card--header .title{font-size:18px;margin:0 0 0 25px;padding:3px}.overview .filterBox--hidden{right:-100vw}.overview .filterBox--header{align-items:center;background-color:#88c7ff;display:flex;height:35px;padding:5px 20px}.overview .filterBox--header--icon{cursor:pointer;margin-right:15px}.overview .filterBox--header--reset{background-color:hsla(0,0%,100%,.5);border:none;cursor:auto;height:100%}.overview .filterBox--header--reset-icon{cursor:pointer;position:absolute;right:20px}.overview .filterBox--header--reset:disabled{background:none;border:none;color:#000;display:inline-block;font-weight:600}.overview .filterBox--header--reset:disabled .hide{display:none}.overview .filterBox--container{align-items:center;display:flex;flex-direction:column;margin-left:20px;margin-right:20px;text-align:center}.overview .filterBox--container h4{font-size:18px;margin-bottom:0;margin-top:2.5rem}.overview .filterBox--container .hidden{display:none!important}.overview .filterBox--container .filter-add-button{align-items:center;background-color:#71bcff;border-radius:28px;box-shadow:0 3px 6px 0 rgba(0,0,0,.15);color:#fff;cursor:pointer;display:flex;flex-direction:row;justify-content:center;min-height:23px;min-width:23px;padding:5px;transition:all .5s ease-in-out}.overview .menu{align-items:flex-start;background:#71bcff;display:flex;font-weight:700;padding:10px 10px 0;width:calc(100% - 20px);z-index:100}.overview .menu .menu-item{background:hsla(0,0%,100%,.5);border-radius:8px 8px 0 0;color:#000;font-size:14px;height:17px;margin-right:1px;padding:8px 13px;text-decoration:none;white-space:nowrap}.overview .menu .menu-item.selected{background:#fff}.overview .route-container{max-height:calc(100vh - 43px);overflow:auto}.overview button{cursor:pointer}.overview button:disabled{display:none}.overview button.reset{background:hsla(0,0%,100%,.5);border:none;border-radius:0 0 8px 8px;color:#000;display:block;font-size:12px;padding:5px;position:fixed;right:10px;top:0}.overview button.reset .filter-icon{margin-left:10px;margin-right:5px}.overview button.reset .highlight{font-weight:700}.overview button.reset:disabled{cursor:auto}.overview button.reset:disabled .hide{visibility:hidden}#summary{padding-top:30px;text-align:center}#summary #benchmark_setup{overflow-x:scroll;width:100%}#summary #benchmark_setup .fixedRowTitle{align-items:center;display:flex;padding-left:8px;text-align:left}#summary #benchmark_setup .stickCheckbox{left:0;position:-webkit-sticky;position:sticky}#summary #benchmark_setup table{border-collapse:collapse;width:100%}#summary #benchmark_setup table td,#summary #benchmark_setup table th{border:1px solid #ddd;padding:8px}#summary #benchmark_setup table .options ul{margin:0;padding:0 0 0 17px}#summary #benchmark_setup table .options li{font-size:9pt;list-style:none;text-align:left}#summary #benchmark_setup table .benchmark,#summary #benchmark_setup table th{font-weight:700}#summary #benchmark_setup table th{background-color:#fff}#summary #benchmark_setup table th.sticky{left:0;position:-webkit-sticky!important;position:sticky!important;z-index:11}#summary #benchmark_setup table tr:nth-child(2n),#summary #benchmark_setup table tr:nth-child(2n) th{background-color:#eee}#summary #benchmark_setup table tr:hover{background-color:#ddd}#summary #benchmark_setup table th{padding-bottom:8px;padding-top:8px;text-align:left;width:14vw}#summary #statistics #statistics-placeholder{background-color:#f7f7f7;border-bottom:1px solid #adadad;border-top:1px solid #adadad;padding:1em}#summary #statistics #statistics-table>.table .table-content .td{padding:8px 5px}#summary #statistics #statistics-table>.table .table-content .table-header .tr:nth-of-type(2){box-shadow:0 2px 15px 0 rgba(0,0,0,.15);position:relative;z-index:10}#summary #statistics #statistics-table>.table .table-content .table-header .tr .th{padding:5px}#summary #statistics #statistics-table>.table .table-content .table-header .tr .th:not(:first-of-type){border-right:1px solid rgba(0,0,0,.05)}#summary #statistics #statistics-table>.table .table-content .table-header .tr .th.outer{text-overflow:ellipsis}#summary #statistics #statistics-table>.table .table-content .table-header .tr .th .header-data{height:100%}#summary #statistics #statistics-table>.table .table-content .table-header .tr .th .selectColumns{border:#555;overflow:hidden;text-overflow:ellipsis}#summary #statistics #statistics-table>.table .table-content .table-body .td .cell{padding:0;text-align:right}#summary #statistics #statistics-table>.table .table-content .table-body .row-title{font-weight:700;overflow:hidden;text-align:left;text-overflow:ellipsis}#summary #statistics #statistics-table>.table .table-content .table-body .tr{border-bottom:1px solid #adadad}#summary p{margin-top:40px}.main-table .table{display:flex;flex-direction:column;height:calc(100vh - 43px)}.main-table .table a{display:block;text-decoration:none}.main-table .table a:hover{background-color:#ccc}.main-table .table a:focus{outline:1px dotted red}.main-table .table .tr .td:first-of-type,.main-table .table .tr .th:first-of-type{border-right:1px solid #ccc}.main-table .table .fixed-task-header{justify-content:space-around;margin:auto;width:33%}.main-table .table .fixed-task-header input{width:100%}.main-table .table .table-content{flex:auto 1;overflow-y:scroll}.main-table .table .table-content .td{border-right:1px solid rgba(0,0,0,.02)}.main-table .table .table-content .td.reg-column{align-items:center;display:flex;justify-content:flex-end}.main-table .table .table-content .td.reg-column a{width:100%}.main-table .table .table-content .td.reg-column div{padding:5px 3px}.main-table .table .table-content .table-header{position:-webkit-sticky;position:sticky;top:0;z-index:3}.main-table .table .table-content .table-header>.tr:first-of-type{border-bottom:1px solid #f2f2f2}.main-table .table .table-content .table-header .shadow-container{box-shadow:0 2px 15px 0 rgba(0,0,0,.15);position:relative;z-index:10}.main-table .table .table-content .table-header .shadow-container .th:not(:first-of-type){border-right:1px solid rgba(0,0,0,.05)}.main-table .table .table-content .table-header .tr.filter{border-bottom:1px solid rgba(0,0,0,.05)}.main-table .table .table-content .th.header{position:relative}.main-table .table .table-content .th.header:last-child{overflow:hidden}.main-table .table .table-content .th.header.fixed-task,.main-table .table .table-content .th.header.reg-column{font-weight:400}.main-table .table .table-content .th.header:not(.separator):not(.filter)>*{overflow:hidden;padding:5px;text-overflow:ellipsis}.main-table .table .table-content .th.header .header-sort-container{height:calc(100% - 10px)}.main-table .table .table-content .th.header .header-sort-container.sorted-asc{box-shadow:inset 0 3px 0 0 rgba(0,0,0,.6)}.main-table .table .table-content .th.header .header-sort-container.sorted-desc{box-shadow:inset 0 -3px 0 0 rgba(0,0,0,.6)}.main-table .table .table-content .th.header.filter{padding:5px}.main-table .table .table-content .th.header.filter .filter-field{background:#fff;border:1px solid rgba(0,0,0,.1);border-radius:3px;font-size:inherit;padding:5px 7px;text-align:right;width:100%}.main-table .table .table-content .th.header.filter .filter-field *{text-align:left}.main-table .table .table-content .table-body span{text-align:center}.main-table .table .table-content .table-body .tr{border-bottom:1px solid #f2f2f2}.main-table .table .table-content .table-body .tr:hover .td{background:#f2f2f2}.main-table .table .table-content .table-body .row_id:not(:first-child){border-left:1px solid #000;color:#484848;font-size:9pt;height:100%;margin-left:5px;padding-left:5px}.main-table .table .table-content .table-body .td{padding:1px;text-align:right}.main-table .table .table-content .table-body .td>a{margin-left:1ex;padding:5px 3px}.main-table .table .table-content .table-body .row__name--cellLink{color:#000}.main-table .table .pagination{align-items:stretch;align-items:center;background:#fff;border-top:2px solid rgba(0,0,0,.1);bottom:0;box-shadow:0 0 15px 0 rgba(0,0,0,.1);display:flex;flex-wrap:wrap;justify-content:space-between;padding:3px;position:-webkit-sticky;position:sticky;z-index:99;z-index:1}.main-table .table .pagination .pagination-container{align-items:center;display:flex;height:100%;justify-content:space-around}.main-table .table .pagination .pagination-container#pagination-next,.main-table .table .pagination .pagination-container#pagination-previous{flex:1 1}.main-table .table .pagination .pagination-container#pagination-next .pagination-element,.main-table .table .pagination .pagination-container#pagination-previous .pagination-element{align-items:center;display:flex;height:100%;justify-content:center;width:100%}.main-table .table .pagination .pagination-container#pagination-center{display:flex;flex:1.5 1;flex-direction:row;flex-wrap:wrap;justify-content:space-around}.main-table .table .pagination .pagination-container#pagination-center input,.main-table .table .pagination .pagination-container#pagination-center select{background:#fff;border:1px solid rgba(0,0,0,.1)}.main-table .table .pagination .pagination-container#pagination-center .pagination-element{margin:3px 10px}.main-table .table .pagination .pagination-container .pagination-element{border-radius:3px;text-align:center}.main-table .table .pagination .pagination-container .pagination-element.button{background:rgba(0,0,0,.1);border-radius:3px;color:rgba(0,0,0,.6);cursor:pointer;outline-width:0;transition:all .1s ease}.main-table .table .pagination .pagination-container .pagination-element.button.disabled{cursor:default;opacity:.5}.main-table .table .pagination .pagination-container .pagination-element.button:not(.disabled):hover{background:rgba(0,0,0,.3);color:#fff}.main-table .table .pagination .pagination-container .pagination-element#goto-page-element{white-space:nowrap}.main-table .table .pagination .pagination-container .pagination-element#goto-page-element input{border-radius:3px;font-size:inherit;margin:0 5px;padding:5px 7px;text-align:center;width:55px}.main-table .table .pagination .pagination-container .pagination-element#set-page-element select{border-radius:3px;font-size:inherit;padding:5px 7px}.main-table .aborted{text-align:center}.main-table .aborted:after{content:"—"}.main-table input::-webkit-input-placeholder{color:#d3d3d3}.main-table input::placeholder{color:#d3d3d3}.quantilePlot{margin:20px}.quantilePlot .rv-discrete-color-legend{max-width:50vw;width:-webkit-max-content;width:max-content}.quantilePlot .rv-discrete-color-legend-item.clickable{padding:3px 10px;white-space:normal}.quantilePlot .rv-discrete-color-legend-item.clickable:hover{background:#ccc}.quantilePlot .settings-legend-container{justify-content:space-between}.quantilePlot .settings-container{flex-grow:0;min-width:0}.quantilePlot .settings-border-container,.quantilePlot .settings-subcontainer{justify-content:left;min-width:0}.quantilePlot .settings-subcontainer.flexible-width{flex:1 1 50%}.quantilePlot .setting.flexible-width{flex:1 0 60%;max-width:-webkit-max-content;max-width:max-content;min-width:0}.quantilePlot .setting.flexible-width .setting-select{min-width:120px}.scatterPlot{margin:20px;text-align:center}.scatterPlot__select select{margin:10px}.scatterPlot .middle-line .rv-xy-plot__axis__line{stroke:#71bcff}.scatterPlot__plot{margin:auto}.scatterPlot button{margin:10px}.scatterPlot .settings-container{margin-right:0}.scatterPlot .settings-subcontainer.flexible-width{flex:1 1 40vw;max-width:-webkit-max-content;max-width:max-content;min-width:0}.scatterPlot .settings-subcontainer.flexible-width .setting{flex:1 1 45%;max-width:-webkit-max-content;max-width:max-content;min-width:250px}.scatterPlot .settings-subcontainer.flexible-width .setting .setting-select{min-width:150px}.scatterPlot .settings-subcontainer.flexible-width .setting.icon{min-width:0}.scatterPlot .settings-subcontainer.flexible-width .setting.icon:hover{cursor:pointer}.settings-legend-container{display:flex}.settings-container{align-items:flex-start;display:flex;flex-grow:1;justify-content:center;margin-right:1em}.settings-border-container{border:1px solid rgba(0,0,0,.3);display:inline-flex;flex-wrap:wrap;justify-content:center;max-width:100%;padding:.5em}.settings-subcontainer{flex-wrap:wrap;justify-content:center}.setting,.settings-subcontainer{align-items:center;display:flex}.setting-label{padding:.4em 1em;white-space:nowrap}.setting-label.with-tooltip{text-decoration:underline}.setting-label.with-tooltip:hover{cursor:help}.setting-select{border:1px solid #c3c3c3;border-radius:3px;cursor:pointer;height:25px;margin:.4em 1em .4em 0;padding-left:10px}.setting-button{height:25px;margin:.4em 1em}.setting .disabled,.setting.disabled{color:rgba(0,0,0,.4)}.setting .disabled .setting-select,.setting.disabled .setting-select{cursor:not-allowed}.rv-discrete-color-legend{border:1px solid rgba(0,0,0,.3)}.rv-discrete-color-legend-item.clickable{white-space:nowrap}.plot__noresults{left:50%;position:absolute;top:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.info{margin:40px}.info-header{display:flex;justify-content:space-between;margin:40px 0}.info-header h1{margin:0}.info-header span{border:1px solid #71bcff;font-size:9pt;padding:5px}.ReactModal__Body--open{overflow:hidden;-webkit-user-select:none;user-select:none}.ReactModal__Overlay{z-index:900}.overlay{background:#fff;border:5px solid gray;border-radius:5px;bottom:40px;left:20px;overflow:scroll;position:fixed;right:20px;top:80px;-webkit-user-select:text;user-select:text}.overlay h1{margin-bottom:40px}.overlay td,.overlay th{background:#fff;color:#8e8d8d;cursor:pointer;text-align:center}.overlay td label,.overlay th label{cursor:pointer}.overlay td.checked,.overlay th.checked{color:#000}.overlay th:first-child{background:#fff}.overlay td:first-child{text-align:left;width:30%}.overlay input{display:none}.overlay__buttons{display:flex;justify-content:center;width:100%}.overlay__buttons .btn{margin-top:50px;width:20vw}.overlay th{border-bottom:1px solid #000}.overlay .closing{border-radius:4px;cursor:pointer;font-size:120%}.overlay .closing:hover{background:#000;color:#fff}.overlay.second-level .link-overlay-header-container{background-color:#fff}.overlay.second-level .link-overlay-text{margin-top:0}.overlay .link-overlay-file-link{background-color:inherit;border:none;color:blue;font:inherit;text-decoration:underline}.overlay .link-overlay-file-link:hover{cursor:pointer}.overlay .link-overlay-header-container{display:flex;flex-direction:row-reverse;height:30px;justify-content:space-between;left:0;padding:10px 10px 0;pointer-events:none;position:-webkit-sticky;position:sticky;top:0}.overlay .link-overlay-header-container>*{pointer-events:auto}.overlay .link-overlay-back-button:hover{cursor:pointer}.overlay .link-overlay-back-icon{margin-right:1em}.overlay .link-overlay-text{margin-top:-30px;padding:0 10px 10px}.rt-td{text-align:left}.ReactTable{border:none!important}.tooltip{border-bottom:1px dotted #000;display:inline-block;position:relative;z-index:10}.tooltip .tooltiptext{background-color:#555;border-radius:6px;color:#fff;left:50%;margin-left:-60px;opacity:0;padding:5px 0;position:absolute;text-align:center;top:100%;transition:opacity .3s;visibility:hidden;width:120px;z-index:999999}.tooltip .tooltiptext:after{border:5px solid transparent;border-bottom-color:#000;bottom:100%;content:" ";left:50%;margin-left:-5px;position:absolute}.tooltip:hover .tooltiptext{opacity:1;visibility:visible}@media only screen and (max-width:700px){.quantilePlot .settings-legend-container{flex-wrap:wrap;justify-content:center}.quantilePlot .setting,.quantilePlot .setting-select,.quantilePlot .settings-subcontainer{flex-grow:1}.quantilePlot .setting.flexible-width{max-width:90vw;min-width:18em}.quantilePlot .setting.flexible-width .setting-select{max-width:75vw}.quantilePlot .settings-container{margin-right:0}.quantilePlot .rv-discrete-color-legend{margin:1em 0;max-width:95vw}} \ No newline at end of file diff --git a/benchexec/tablegenerator/react-table/build/main.min.js b/benchexec/tablegenerator/react-table/build/main.min.js index 83874950e..b6b1786ed 100644 --- a/benchexec/tablegenerator/react-table/build/main.min.js +++ b/benchexec/tablegenerator/react-table/build/main.min.js @@ -1 +1 @@ -!function(){var e={4006:function(e,t,n){"use strict";var i=n(7313),r=n(1168),s=n(1413),l=n(3433),a=n(5671),o=n(3144),c=n(136),u=n(7277),d=n(2135),h=n(8467),f=n(7762),p=n(9439),g=n(5110),m=n(8567),v=n(4925),b=n(4942),I=n(4506),C=n(2229),x=n.n(C),y=n(1969),Z=n(1875),j=n(6417),F=["ids"],A=function(e){(0,c.Z)(n,e);var t=(0,u.Z)(n);function n(e){var r;return(0,a.Z)(this,n),(r=t.call(this,e)).childRef=i.createRef(),r}return(0,o.Z)(n,[{key:"render",value:function(){var e=this;return(0,j.jsxs)(j.Fragment,{children:[(0,j.jsx)("span",{ref:this.childRef,children:this.props.children}),(0,j.jsx)("button",{title:"Copy to clipboard",style:{margin:"1ex"},onClick:function(){x()(e.childRef.current.innerText,{format:"text/plain"})},children:(0,j.jsx)(y.G,{icon:Z.kZ_})})]})}}]),n}(i.Component),N="##########",W=function(e){return"count"===e.type||"measure"===e.type},G=function(e){return void 0===e||null===e},B=function(e,t){return G(e)||G(e.raw)?t:e.raw},w=function(e,t){var n=B(e,"").toLowerCase(),i=B(t,"").toLowerCase();return""===n?1:""===i?-1:n>i?1:n1?t.slice(1).join("?"):void 0;if(void 0===n||0===n.length)return{};var i,r=n.split("&").map((function(e){return e.split("=")})),s={},l=(0,f.Z)(r);try{for(l.s();!(i=l.n()).done;){var a=(0,I.Z)(i.value),o=a[0],c=a.slice(1);s[decodeURI(o)]="filter"===o?c.join("="):decodeURI(c.join("="))}}catch(u){l.e(u)}finally{l.f()}return s},K=function(e){return Object.keys(e).filter((function(t){return void 0!==e[t]&&null!==e[t]})).map((function(t){return"".concat(t,"=").concat(e[t])})).join("&")},L=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=X(e),i=(0,s.Z)((0,s.Z)({},n),t),r=K(i),l=e.split("?")[0];return{newUrl:r.length>0?"".concat(l,"?").concat(r):l,queryString:"?".concat(r)}},O=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{callbacks:[],pushState:!1},n=L(window.location.href,e),i=n.newUrl;t.pushState&&window.history.pushState({},"",i);var r=t.callbacks;if(r&&r.length>0){var s,l=(0,f.Z)(r);try{for(l.s();!(s=l.n()).done;){var a=s.value;a()}}catch(o){l.e(o)}finally{l.f()}}window.location.href=i},E=function(e){for(var t=[],n=0,i=Object.entries(e);n2&&void 0!==arguments[2]&&arguments[2],i={};if(e.length>Math.floor(t.length/2)){var r,s=[],l=(0,f.Z)(t);try{for(l.s();!(r=l.n()).done;){var a=r.value;e.includes(a)||s.push(n?a.trim():a)}}catch(o){l.e(o)}finally{l.f()}i.notIn=s}else i.in=e.map((function(e){return n?e.trim():e}));return E(i)};function D(e,t,n,i,r){var s=[],l=e.statusValues,a=e.categoryValues,o=t[n][i],c=r[n][i],u=!!l,d=!!a;if(u){var h=U(l,o);s.push("status(".concat(h,")")),d||s.push("category(empty())")}if(d){u||s.push("status(empty())");var f=U(a,c,!0);s.push("category(".concat(f,")"))}return s.join(",")}function P(e){if("string"!==typeof e)throw new Error("Invalid value type");return e.replaceAll("(","%28").replaceAll(")","%29")}var M=function(e){if("string"!==typeof e)throw new Error("Invalid value type for converting to RegExp");return new RegExp(e.replace(/[.*+?^${}()|[\]\\]/g,"\\$&"),"ui")},J=function(e){if("string"!==typeof e)throw new Error("Invalid filter ID");var t=e.split("_");if(2===t.length)throw new Error("Invalid filter ID");return{tool:t[0],name:t.length>2?t.slice(1,-1).join("_"):void 0,column:t.length>2?t.at(-1):void 0}},z=function(e){var t,n=arguments.length>1&&void 0!==arguments[1]&&arguments[1],i={},r=0,s="",l=(0,f.Z)(e);try{for(l.s();!(t=l.n()).done;){var a=t.value;if("("!==a){if(")"!==a)0!==r||","!==a?s+=a:s="";else if(s+=a,0===--r){var o=s.indexOf("("),c=s.substr(0,o),u=s.substr(o+1,s.length-1-(o+1));i[c]=n?decodeURIComponent(u):u}}else s+=a,r++}}catch(d){l.e(d)}finally{l.f()}return i},_=function(e,t,n,i,r){return"values"===e?[{values:t.split(",").map(unescape)}]:"value"===e?[{value:unescape(t)}]:"status"===e||"category"===e?function(e,t,n,i,r){for(var s=z(t),a=[],o=0,c=Object.entries(s);o0?r.ids={values:u.map((function(e){return e||""}))}:d&&s.push({id:o,value:c})}}catch(K){l.e(K)}finally{l.f()}var Z=r.ids,j=(0,v.Z)(r,F),A=[];Z&&A.push("id(values(".concat(Z.values.map((function(e){return P(encodeURIComponent(e))})).join(","),"))")),s&&s.forEach((function(e){A.push("id_any(value(".concat(P(encodeURIComponent(e.value)),"))"))}));for(var N=0,W=Object.entries(j);N0&&A.push("".concat(B,"(").concat(S.join(","),")"))}return A.join(",")}}({statusValues:e,categoryValues:t});return function(e,t){if(!e)return O({filter:void 0},t);var i=n(e);return O(i?{filter:i}:{filter:void 0},t)}},$=" ",ee=" ",te=function(){function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"Unknown";(0,a.Z)(this,e),this._defaultOptions={whitespaceFormat:!1,html:!1,leadingZero:!0,additionalFormatting:function(e){return e}},this.significantDigits=t,this.maxPositiveDecimalPosition=-1,this.maxNegativeDecimalPosition=-1,this.name=n}return(0,o.Z)(e,[{key:"addDataItem",value:function(e){var t=this.format(e).split(/\.|,/),n=(0,p.Z)(t,2),i=n[0],r=n[1];this.maxPositiveDecimalPosition=Math.max(this.maxPositiveDecimalPosition,i&&"0"!==i?i.length:0),this.maxNegativeDecimalPosition=Math.max(this.maxNegativeDecimalPosition,r?r.length:0)}},{key:"format",value:function(e){var t=e.toString(),n="",i="",r=0,s=0,l=!1,a=!1;if("NaN"===t)return"NaN";if(t.endsWith("Infinity"))return t.replace("Infinity","Inf");if(t.includes("e")){var o=t.split("-"),c=(0,p.Z)(o,2),u=c[0],d=c[1],h=0;u.includes(".")&&(h=1),t=Number(e).toFixed(Number(d)+h)}for(var f=t.replace(/,/,".").indexOf(".");sr;){var g=t[r];if("."===g||","===g)n+=".",a=!0;else{if(!l){if("0"===g){r+=1,a&&(n+=g);continue}l=!0}n+=g,s+=1}r+=1}if(i=t.substring(r),""===n&&""===i&&(n=t),"."===n[0]&&(n="0".concat(n)),""!==i){var m="."===i[0];if(i=i.replace(/\./,""),i="".concat(i[0],".").concat(i.substr(1)),i=Math.round(Number(i)),(i=isNaN(i)?"":i.toString()).length>1&&"."!==i[0]){var v=i[0];i=i[1];for(var b=n.length,I=n.split("."),C=(0,p.Z)(I,2)[1],x=C&&C.length-1||0,y=C?"0.":"",Z=x;Z>0;)y+="0",Z-=1;for(n=function(e,t){var n=e,i=t;if("string"===typeof e&&(n=Number(e)),"string"===typeof t&&(i=Number(t)),Number.isInteger(n)||Number.isInteger(i))return n+i;var r=e.toString(),s=r.length,l=r.indexOf("."),a=t.toString(),o=a.length,c=a.indexOf("."),u=Math.max(s-l,o-c)-1;return Number((n+i).toFixed(u))}(n,y+=v).toFixed(x+1).substr(0,b);n.length1&&void 0!==arguments[1]?arguments[1]:{},i=(0,s.Z)((0,s.Z)({},e._defaultOptions),n),r=i.whitespaceFormat,l=i.html,a=i.leadingZero,o=i.additionalFormatting,c={significantDigits:e.significantDigits,maxDecimalInputLength:e.maxNegativeDecimalPosition};if(G(e.significantDigits))return o(t.toString(),c);var u=e.format(t);if("NaN"===(u=o(u,c)))return u;if(r){var d=l?$:" ",h=u.split(/\.|,/),f=(0,p.Z)(h,2),g=f[0],m=f[1];"0"!==g||a||(g=m?"":"0"),g=g||"";for(var v=(m=m||"")?".":d;m.length=d&&I<=h}if(s)break}}catch(C){o.e(C)}finally{o.f()}if(!s)return!1}return!0}));return c}},Ae=(xe={},(0,b.Z)(xe,"empty","Empty rows"),(0,b.Z)(xe,"aborted","\u2014"),xe);function Ne(e){var t=e.column.id,n=e.runSetIdx,i=e.columnIdx,r=e.allCategoryValues,s=e.allStatusValues,a=e.filteredColumnValues,o=e.setCustomFilters,c=r[n][i],u=function(e){var t=e.categoryFilters,n=e.statusFilters,i=e.categoryFilterValues,r=e.statusFilterValues,s=[];return re(t,i)||(s=t),re(n,r)||(s=[].concat((0,l.Z)(s),(0,l.Z)(n))),s}({categoryFilters:V([n,"categories"],[],a),statusFilters:V([n,i],[],a),categoryFilterValues:c.map((function(e){return"".concat(e," ")})),statusFilterValues:s[n][i]}),d=0===u.length,h=u.length>1||u[0]===N,f=u&&u[0],p=(d?"all ":h&&"multiple")||f;return(0,j.jsxs)("select",{className:"filter-field",onChange:function(e){return o({id:t,value:e.target.value})},value:p,children:[h&&(0,j.jsx)("option",{value:"multiple",disabled:!0,children:u.map((function(e){return e.trim()})).filter((function(e){return"all"!==e&&e!==N})).join(", ")||"No filters selected"}),(0,j.jsx)("option",{value:"all ",children:"Show all"}),c.filter((function(e){return e in Ae})).map((function(e){return(0,j.jsx)("option",{value:e+" ",children:Ae[e]},e)})),(0,j.jsx)("optgroup",{label:"Category",children:c.filter((function(e){return!(e in Ae)})).sort().map((function(e){return(0,j.jsx)("option",{value:e+" ",className:e,children:e},e)}))}),(0,j.jsx)("optgroup",{label:"Status",children:s[n][i].filter((function(e){return e!==je})).sort().map((function(e){return(0,j.jsx)("option",{value:e,children:e},e)}))})]})}var We=(0,i.memo)(Ne),Ge=[50,100,250,500,1e3,2500],Be=function(){var e=X();return e.sort?e.sort.split(";").map((function(e){var t=e.split(",");return{id:t[0],desc:"desc"===t[1]}})):[]},we=function(e){var t=(0,i.useState)(!0),n=(0,p.Z)(t,2),r=n[0],a=n[1],o=(0,i.useState)(Ce()),c=(0,p.Z)(o,2),u=c[0],d=c[1],v=(0,i.useState)({}),b=(0,p.Z)(v,2),I=b[0],C=b[1],x=(0,i.useState)(!1),y=(0,p.Z)(x,2),Z=y[0],F=y[1],A=(0,i.useState)(null),N=(0,p.Z)(A,2),S=N[0],Y=N[1],V=(0,i.useCallback)((function(t){var n,i=t.tool,r=t.name,s=t.column,l=t.isCategory,a=l?e.statusValues:e.categoryValues,o=[],c=(0,f.Z)(a[i][s]);try{for(c.s();!(n=c.n()).done;){var u=n.value;o.push({id:"".concat(i,"_").concat(r,"_").concat(s),value:"".concat(u).concat(l?"":" ")})}}catch(d){c.e(d)}finally{c.f()}return o}),[e.categoryValues,e.statusValues]),R=(0,i.useCallback)((function(t){var n,i=t.tool,r=t.name,s=t.column,l=[],a=(0,f.Z)(e.statusValues[i][s]);try{for(a.s();!(n=a.n()).done;){var o=n.value;l.push({id:"".concat(i,"_").concat(r,"_").concat(s),value:o})}}catch(p){a.e(p)}finally{a.f()}var c,u=(0,f.Z)(e.categoryValues[i][s]);try{for(u.s();!(c=u.n()).done;){var d=c.value,h="".concat(d," ");l.push({id:"".concat(i,"_").concat(r,"_").concat(s),value:h})}}catch(p){u.e(p)}finally{u.f()}return l}),[e.categoryValues,e.statusValues]),H=(0,i.useCallback)((function(t){"id"===t.id&&(t.isTableTabFilter=!0);var n=[].concat((0,l.Z)(e.filters.filter((function(e){return e.id!==t.id}))),[t]);n=n.filter((function(e){return""!==e.value})),e.addTypeToFilter(n);var i=[];if("status"===t.type){var r=J(t.id),s=r.tool,a=r.name,o=r.column,c=t.value;if("all"===c.trim())i=R({tool:s,name:a,column:o}),n=n.filter((function(e){var n=e.id,i=e.value;return!(n===t.id&&"all"===i.trim())}));else{var u=" "===c[c.length-1];i=V({tool:s,name:a,column:o,isCategory:u})}}e.addTypeToFilter(i),e.filterPlotData([].concat((0,l.Z)(n),(0,l.Z)(i)),!0)}),[e,V,R]),T=(0,i.useCallback)((function(t){var n=t.column.id,i=e.filters.find((function(e){return e.id===n}));return(0,j.jsx)(Ie,{id:n,setFilter:i,disableTaskText:Z,setCustomFilters:H,focusedFilter:S,setFocusedFilter:Y})}),[Z,e.filters,H,S]),K=(0,i.useCallback)((function(t){var n=t.column.id,i=e.filters.find((function(e){return e.id===n}));return(0,j.jsx)(ye,{id:n,setFilter:i,setCustomFilters:H,focusedFilter:S,setFocusedFilter:Y})}),[e.filters,H,S]),L=(0,i.useMemo)((function(){var t=function(t,n,i){if("status"===n.type)return function(t,n,i){var r="".concat(t,"_").concat(n.display_title,"_").concat(i),l=I[r];return{id:r,Header:(0,j.jsx)(he,{column:n}),className:"reg-column",hidden:e.hiddenCols[t].includes(n.colIdx),minWidth:50,width:l||k(n,10),accessor:function(e){return e.results[t].values[i]},Cell:function(n){var i,r=n.row.original.results[t].category,s=n.row.original.results[t].href;return"aborted"===r?(s=void 0,i="Result missing because run was aborted or not executed"):"empty"===r?i="Result missing because task was not part of benchmark set":s&&(i="Click here to show output of tool"),(0,j.jsx)(pe,{cell:n,href:s,className:r,toggleLinkOverlay:e.toggleLinkOverlay,title:i,force:!0})},sortType:function(e,t,n,i){return w(e.values[n],t.values[n])},filter:function(e){return e},Filter:function(n){return(0,j.jsx)(We,(0,s.Z)((0,s.Z)({},n),{},{runSetIdx:t,columnIdx:i,allCategoryValues:e.categoryValues,allStatusValues:e.statusValues,filteredColumnValues:u,setCustomFilters:H}))}}}(t,n,i);var r="".concat(t,"_").concat(n.display_title,"_").concat(i),l=I[r],a=W(n)?K:T;return{id:r,Header:(0,j.jsx)(he,{column:n}),className:"reg-column",hidden:e.hiddenCols[t].includes(n.colIdx),minWidth:50,width:l||k(n),accessor:function(e){return e.results[t].values[i]},Cell:function(t){return(0,j.jsx)(pe,{cell:t,toggleLinkOverlay:e.toggleLinkOverlay})},filter:function(e){return e},Filter:a,sortType:function(e,t,i,r){return W(n)?(s=e.values[i],l=t.values[i],B(s,1/0)-B(l,1/0)):w(e.values[i],t.values[i]);var s,l}}},n=e.tools.map((function(e,n){return function(e,t,n){return[ge(t),{Header:(0,j.jsx)(fe,{runSet:e}),columns:e.columns.map((function(e,i){return n(t,e,i)})),id:"runset-column"}]}(e,n,t)})).flat();return[{Header:function(){return(0,j.jsx)("div",{className:"fixed-task-header",children:(0,j.jsx)("form",{children:(0,j.jsxs)("label",{title:"Fix the first column",children:["Fixed task:",(0,j.jsx)("input",{name:"fixed",type:"checkbox",checked:r,onChange:function(e){var t=e.target;return a(t.checked)}})]})})})},className:"fixed-task",id:"task-id-column",sticky:r?"left":"",columns:[(0,s.Z)((0,s.Z)({width:.3*window.innerWidth,minWidth:230},I.id&&{width:I.id}),{},{Header:(0,j.jsx)(he,{children:(0,j.jsx)(de,{handler:e.selectColumn})}),accessor:"id",Cell:function(t){var n=t.row.original.id.map((function(e){return(0,j.jsx)("span",{className:"row_id",children:e},e)})),i=t.row.original.href;return i?(0,j.jsx)("a",{className:"row__name--cellLink",href:i,title:"Click here to show source code",onClick:function(t){return e.toggleLinkOverlay(t,i)},children:n},i):(0,j.jsx)("span",{title:"This task has no associated file",children:n})},Filter:T,sortType:function(e,t,n,i){var r=Array.isArray(e.values[n])?e.values[n].join():e.values[n],s=Array.isArray(t.values[n])?t.values[n].join():t.values[n];return r>s?1:r0&&C((0,s.Z)((0,s.Z)({},I),e))}),[be,I]),(0,i.useEffect)((function(){F(e.filters.some((function(e){var t=e.id,n=e.values;return"id"===t&&!G(n)})));var t=Ce();ve()(t,u)||d(t),ce>=te&&ne(te-1)}),[e.filters,u,ne,ce,te]);var xe=(0,h.TH)();(0,i.useEffect)((function(e){se(X().pageSize||250),ae(Be()),ne(X().page-1||0)}),[xe,se,ae,ne,window.location.href]);var Ze=function(e){return(0,j.jsx)("div",(0,s.Z)((0,s.Z)({className:"tr headergroup"},e.getHeaderGroupProps()),{},{children:e.headers.map((function(e){return(0,j.jsxs)("div",(0,s.Z)((0,s.Z)({},e.getHeaderProps({className:"th header ".concat(e.headers?"outer ":"").concat(e.className)})),{},{children:[(0,j.jsx)("div",(0,s.Z)((0,s.Z)({},e.canSort&&(!e.className||!e.className.includes("separator"))&&e.getSortByToggleProps({className:"header-sort-container clickable ".concat(e.isSorted?e.isSortedDesc?"sorted-desc ":"sorted-asc ":"")})),{},{children:e.render("Header")})),(!e.className||!e.className.includes("separator"))&&(0,j.jsx)("div",(0,s.Z)((0,s.Z)({},e.getResizerProps()),{},{className:"resizer ".concat(e.isResizing?"isResizing":"")}))]}))}))}))};return(0,j.jsx)("div",{className:"main-table",children:(0,j.jsxs)("div",{className:"table sticky",children:[(0,j.jsx)("div",{className:"table-content",children:(0,j.jsxs)("div",(0,s.Z)((0,s.Z)({className:"table-container"},P()),{},{children:[function(e){var t=e[0],n=e.filter((function(e){return e.headers.some((function(e){return e.canFilter}))}));return(0,j.jsxs)("div",{className:"table-header",children:[Ze(t),(0,j.jsxs)("div",{className:"shadow-container",children:[e.slice(1).map(Ze),n.map((function(e){return(0,j.jsx)("div",(0,s.Z)((0,s.Z)({className:"tr headergroup filter"},e.getHeaderGroupProps()),{},{children:e.headers.map((function(e){return(0,j.jsx)("div",(0,s.Z)((0,s.Z)({},e.getHeaderProps({className:"th header filter ".concat(e.headers?"outer ":"").concat(e.className)})),{},{children:e.canFilter?e.render("Filter"):null}))}))}))}))]})]})}(z),(0,j.jsx)("div",(0,s.Z)((0,s.Z)({},M()),{},{className:"table-body body",children:Q.map((function(e){return _(e),(0,j.jsx)("div",(0,s.Z)((0,s.Z)({},e.getRowProps()),{},{className:"tr",children:e.cells.map((function(e){return(0,j.jsx)("div",(0,s.Z)((0,s.Z)({},e.getCellProps({className:"td "+(e.column.className||"")})),{},{children:e.render("Cell")}))}))}))}))}))]}))}),(0,j.jsxs)("div",{className:"pagination",children:[(0,j.jsxs)("div",{id:"pagination-previous",className:"pagination-container",children:[(0,j.jsx)("div",{onClick:function(){return re()},className:"pagination-element button".concat(q?"":" disabled"),children:"Previous"})," "]}),(0,j.jsxs)("div",{id:"pagination-center",className:"pagination-container",children:[(0,j.jsxs)("div",{id:"goto-page-element",className:"pagination-element",children:["Page",(0,j.jsx)("input",{"aria-label":"jump to page",type:"number",value:Number(ce)+1,onChange:function(e){return ne(Number(e.target.value)-1)}}),"of ",ee.length]}),(0,j.jsx)("div",{id:"set-page-element",className:"pagination-element",children:(0,j.jsx)("select",{value:ue,onChange:function(e){return se(Number(e.target.value))},children:Ge.map((function(e){return(0,j.jsxs)("option",{value:e,children:[e," rows"]},e)}))})})]}),(0,j.jsxs)("div",{id:"pagination-next",className:"pagination-container",children:[(0,j.jsx)("div",{onClick:function(){return ie()},className:"pagination-element button".concat($?"":" disabled"),children:"Next"})," "]})]})]})})},Se=n(4165),Ye=n(5861);n(9e3);var ke=[],Ve={},Re=1,He=[{template:"data:text/plain;base64,Ly8gVGhpcyBmaWxlIGlzIHBhcnQgb2YgQmVuY2hFeGVjLCBhIGZyYW1ld29yayBmb3IgcmVsaWFibGUgYmVuY2htYXJraW5nOgovLyBodHRwczovL2dpdGh1Yi5jb20vc29zeS1sYWIvYmVuY2hleGVjCi8vCi8vIFNQRFgtRmlsZUNvcHlyaWdodFRleHQ6IDIwMTktMjAyMCBEaXJrIEJleWVyIDxodHRwczovL3d3dy5zb3N5LWxhYi5vcmc+Ci8vCi8vIFNQRFgtTGljZW5zZS1JZGVudGlmaWVyOiBBcGFjaGUtMi4wCgovLyBDT1BZIE9GIHV0aWxzLmpzLCBhcyBpbXBvcnRzIHdpbGwgbm90IHdvcmsgaGVyZQovKioKICogRnVuY3Rpb24gdG8gc2FmZWx5IGFkZCB0d28gbnVtYmVycyBpbiBhIHdheSB0aGF0IHNob3VsZCBtaXRpZ2F0ZSBlcnJvcnMKICogY2F1c2VkIGJ5IGluYWNjdXJhdGUgZmxvYXRpbmcgcG9pbnQgb3BlcmF0aW9ucyBpbiBqYXZhc2NyaXB0CiAqIEBwYXJhbSB7TnVtYmVyfFN0cmluZ30gYSAtIFRoZSBiYXNlIG51bWJlcgogKiBAcGFyYW0ge051bWJlcnxTdHJpbmd9IGIgLSBUaGUgbnVtYmVyIHRvIGFkZAogKgogKiBAcmV0dXJucyB7TnVtYmVyfSBUaGUgcmVzdWx0IG9mIHRoZSBhZGRpdGlvbgogKi8KY29uc3Qgc2FmZUFkZCA9IChhLCBiKSA9PiB7CiAgbGV0IGFOdW0gPSBhOwogIGxldCBiTnVtID0gYjsKCiAgaWYgKHR5cGVvZiBhID09PSAic3RyaW5nIikgewogICAgYU51bSA9IE51bWJlcihhKTsKICB9CiAgaWYgKHR5cGVvZiBiID09PSAic3RyaW5nIikgewogICAgYk51bSA9IE51bWJlcihiKTsKICB9CgogIGlmIChOdW1iZXIuaXNJbnRlZ2VyKGFOdW0pIHx8IE51bWJlci5pc0ludGVnZXIoYk51bSkpIHsKICAgIHJldHVybiBhTnVtICsgYk51bTsKICB9CgogIGNvbnN0IGFTdHJpbmcgPSBhLnRvU3RyaW5nKCk7CiAgY29uc3QgYUxlbmd0aCA9IGFTdHJpbmcubGVuZ3RoOwogIGNvbnN0IGFEZWNpbWFsUG9pbnQgPSBhU3RyaW5nLmluZGV4T2YoIi4iKTsKICBjb25zdCBiU3RyaW5nID0gYi50b1N0cmluZygpOwogIGNvbnN0IGJMZW5ndGggPSBiU3RyaW5nLmxlbmd0aDsKICBjb25zdCBiRGVjaW1hbFBvaW50ID0gYlN0cmluZy5pbmRleE9mKCIuIik7CgogIGNvbnN0IGxlbmd0aCA9IE1hdGgubWF4KGFMZW5ndGggLSBhRGVjaW1hbFBvaW50LCBiTGVuZ3RoIC0gYkRlY2ltYWxQb2ludCkgLSAxOwoKICByZXR1cm4gTnVtYmVyKChhTnVtICsgYk51bSkudG9GaXhlZChsZW5ndGgpKTsKfTsKCmNvbnN0IG1hdGhTdHJpbmdNYXggPSAoYSwgYikgPT4gewogIGNvbnN0IG51bUEgPSBOdW1iZXIoYSk7CiAgY29uc3QgbnVtQiA9IE51bWJlcihiKTsKICByZXR1cm4gbnVtQSA+IG51bUIgPyBhIDogYjsKfTsKCmNvbnN0IG1hdGhTdHJpbmdNaW4gPSAoYSwgYikgPT4gewogIGNvbnN0IG51bUEgPSBOdW1iZXIoYSk7CiAgY29uc3QgbnVtQiA9IE51bWJlcihiKTsKICByZXR1cm4gbnVtQSA8IG51bUIgPyBhIDogYjsKfTsKCi8qKgogKiBUaGlzIGZ1bmN0aW9uIGVpdGhlciBhZGRzIHR3byBudW1iZXJzIG9yIGluY3JlbWVudHMgdGhlIG51bWJlcgogKiBwYXNzZWQgaW4gdGhlIGZpcnN0IHBhcmFtZXRlciBpZiB0aGUgdHlwZSBpcyAic3RhdHVzIi4KICogSWYgdGhlIHNlY29uZCBwYXJhbWV0ZXIgaXMgbm90IGEgbnVtYmVyIGFuZCB0aGUgdHlwZSBpcyBub3Qgc3RhdHVzLAogKiB0aGUgZmlyc3QgcGFyYW1ldGVyIHdpbGwgYmUgcmV0dXJuZWQKICoKICogQHBhcmFtIHtOdW1iZXJ9IGEKICogQHBhcmFtIHsqfSBiCiAqIEBwYXJhbSB7U3RyaW5nfSB0eXBlCiAqLwpjb25zdCBtYXliZUFkZCA9IChhLCBiLCB0eXBlKSA9PiB7CiAgaWYgKE51bWJlcihiKSkgewogICAgcmV0dXJuIHNhZmVBZGQoYSwgYik7CiAgfQogIGlmICh0eXBlID09PSAic3RhdHVzIikgewogICAgcmV0dXJuIGEgKyAxOwogIH0KICByZXR1cm4gYTsKfTsKY29uc3QgcmVtb3ZlUm91bmRPZmYgPSAobnVtKSA9PiB7CiAgY29uc3Qgc3RyID0gbnVtLnRvU3RyaW5nKCk7CiAgaWYgKHN0ci5tYXRjaCgvXC4uKz8wezIsfVxkJC8pKSB7CiAgICByZXR1cm4gTnVtYmVyKHN0ci5zdWJzdHIoMCwgc3RyLmxlbmd0aCAtIDEpKTsKICB9CiAgcmV0dXJuIG51bTsKfTsKCmNvbnN0IGNhbGN1bGF0ZU1lYW4gPSAodmFsdWVzLCBhbGxJdGVtcykgPT4gewogIGNvbnN0IG51bU1pbiA9IE51bWJlcih2YWx1ZXMubWluKTsKICBjb25zdCBudW1NYXggPSBOdW1iZXIodmFsdWVzLm1heCk7CiAgaWYgKG51bU1pbiA9PT0gLUluZmluaXR5ICYmIG51bU1heCA9PT0gSW5maW5pdHkpIHsKICAgIHZhbHVlcy5hdmcgPSAiTmFOIjsKICB9IGVsc2UgaWYgKG51bU1pbiA9PT0gLUluZmluaXR5KSB7CiAgICB2YWx1ZXMuYXZnID0gIi1JbmZpbml0eSI7CiAgfSBlbHNlIGlmIChudW1NYXggPT09IEluZmluaXR5KSB7CiAgICB2YWx1ZXMuYXZnID0gIkluZmluaXR5IjsKICB9IGVsc2UgewogICAgdmFsdWVzLmF2ZyA9IHJlbW92ZVJvdW5kT2ZmKHZhbHVlcy5zdW0gLyBhbGxJdGVtcy5sZW5ndGgpOwogIH0KfTsKCmNvbnN0IGNhbGN1bGF0ZU1lZGlhbiA9ICh2YWx1ZXMsIGFsbEl0ZW1zKSA9PiB7CiAgaWYgKGFsbEl0ZW1zLmxlbmd0aCAlIDIgPT09IDApIHsKICAgIGNvbnN0IGlkeCA9IGFsbEl0ZW1zLmxlbmd0aCAvIDI7CiAgICB2YWx1ZXMubWVkaWFuID0KICAgICAgKE51bWJlcihhbGxJdGVtc1tpZHggLSAxXS5jb2x1bW4pICsgTnVtYmVyKGFsbEl0ZW1zW2lkeF0uY29sdW1uKSkgLyAyLjA7CiAgfSBlbHNlIHsKICAgIHZhbHVlcy5tZWRpYW4gPSBhbGxJdGVtc1tNYXRoLmZsb29yKGFsbEl0ZW1zLmxlbmd0aCAvIDIuMCldLmNvbHVtbjsKICB9Cn07CmNvbnN0IGNhbGN1bGF0ZVN0ZGV2ID0gKGhhc05lZ0luZiwgaGFzUG9zSW5mLCB2YXJpYW5jZSwgc2l6ZSkgPT4gewogIGlmIChoYXNOZWdJbmYgJiYgaGFzUG9zSW5mKSB7CiAgICByZXR1cm4gIk5hTiI7CiAgfQogIGlmIChoYXNOZWdJbmYgfHwgaGFzUG9zSW5mKSB7CiAgICByZXR1cm4gSW5maW5pdHk7CiAgfQogIHJldHVybiBNYXRoLnNxcnQodmFyaWFuY2UgLyBzaXplKTsKfTsKCmNvbnN0IHBhcnNlUHl0aG9uSW5maW5pdHlWYWx1ZXMgPSAoZGF0YSkgPT4KICBkYXRhLm1hcCgoaXRlbSkgPT4gewogICAgaWYgKGl0ZW0uY29sdW1uVHlwZSA9PT0gInN0YXR1cyIgfHwgIWl0ZW0uY29sdW1uLmVuZHNXaXRoKCJJbmYiKSkgewogICAgICByZXR1cm4gaXRlbTsKICAgIH0KICAgIC8vIFdlIGhhdmUgYSBweXRob24gSW5maW5pdHkgdmFsdWUgdGhhdCB3ZSB3YW50IHRvIHRyYW5zZmVyIHRvIGEgc3RyaW5nCiAgICAvLyB0aGF0IGNhbiBiZSBpbnRlcnByZXRlZCBhcyBhIEphdmFTY3JpcHQgSW5maW5pdHkgdmFsdWUKICAgIGl0ZW0uY29sdW1uID0gaXRlbS5jb2x1bW4ucmVwbGFjZSgiSW5mIiwgIkluZmluaXR5Iik7CiAgICByZXR1cm4gaXRlbTsKICB9KTsKCi8vIElmIGEgYnVja2V0IGNvbnRhaW5zIGEgTmFOIHZhbHVlLCB3ZSBjYW4gbm90IHBlcmZvcm0gYW55IHN0YXQgY2FsY3VsYXRpb24KY29uc3Qgc2hvdWxkU2tpcEJ1Y2tldCA9IChidWNrZXRNZXRhLCBrZXkpID0+IHsKICBpZiAoYnVja2V0TWV0YVtrZXldICYmIGJ1Y2tldE1ldGFba2V5XS5oYXNOYU4pIHsKICAgIHJldHVybiB0cnVlOwogIH0KICByZXR1cm4gZmFsc2U7Cn07CgovKioKICogRnVuY3Rpb24gdGhhdCBrZWVwcyB0cmFjayBvZiB0aGUgbWF4IGlucHV0dGVkIGRlY2ltYWwgbGVuZ3RoIG9mIGNvbHVtbiB2YWx1ZXMuCiAqIFRoaXMgaXMgdXNlZCBmb3IgY29uZGl0aW9uYWwgZm9ybWF0dGluZyBpbiB0aGUgc3RhdHMgbW9kdWxlIHRvIGRldGVybWluZSB0aGUgbWF4aW11bQogKiBhbW91bnQgb2YgcGFkZGVkIDBzCiAqCiAqIEB0eXBlZGVmIFVwZGF0ZU1heERlY2ltYWxNZXRhSW5mb1BhcmFtCiAqIEBwYXJhbSB7U3RyaW5nfSBjb2x1bW5UeXBlIC0gVGhlIHR5cGUgb2YgdGhlIGN1cnJlbnQgY29sdW1uCiAqIEBwYXJhbSB7T2JqZWN0fSBjb2x1bW4gLSBUaGUgY29sdW1uIG9iamVjdAogKiBAcGFyYW0ge09iamVjdH0gYnVja2V0IC0gVGhlIGN1cnJlbnQgc3RhdCBidWNrZXQgaW4gY29udGV4dAogKgogKiBAcGFyYW0ge1VwZGF0ZU1heERlY2ltYWxNZXRhSW5mb1BhcmFtfSBwYXJhbQogKi8KY29uc3QgdXBkYXRlTWF4RGVjaW1hbE1ldGFJbmZvID0gKHsgY29sdW1uVHlwZSwgY29sdW1uLCBidWNrZXQgfSkgPT4gewogIGlmIChjb2x1bW5UeXBlICE9PSAic3RhdHVzIikgewogICAgY29uc3QgWywgZGVjaW1hbF0gPSBjb2x1bW4uc3BsaXQoIi4iKTsKICAgIGJ1Y2tldC5tZXRhLm1heERlY2ltYWxzID0gTWF0aC5tYXgoCiAgICAgIGJ1Y2tldC5tZXRhLm1heERlY2ltYWxzLAogICAgICBkZWNpbWFsPy5sZW5ndGggPz8gMCwKICAgICk7CiAgfQp9OwoKLyoqCiAqIEB0eXBlZGVmICBNZXRhSW5mbwogKiAgQWRkaXRpb25hbCBtZXRhaW5mb3JtYXRpb24gdG8gYmUgdXNlZCBmb3IgcG9zdC1wcm9jZXNzaW5nIChsaWtlIG51bWJlciBmb3JtYXR0aW5nKQogKiBAcHJvcCB7c3RyaW5nfG51bGx9IHR5cGUgLSBUaGUgY29sdW1uIHR5cGUKICogQHByb3Age251bWJlcn0gbWF4RGVjaW1hbHMgLSBUaGUgbWF4aW11bSBhbW91bnQgb2YgZGVjaW1hbHMgYWNyb3NzIGFsbCBudW1iZXJzIGluIHRoZSBidWNrZXQKICogICAgICAgICAgICAgICAgICAgICAgICAgICAgICB1c2VkIGZvciBudW1iZXIgZm9ybWF0dGluZwogKi8KCi8qKgogKiBAdHlwZWRlZiBCdWNrZXQKICogU3RhdGlzdGljcyB0byBiZSBkaXNwbGF5ZWQgaW4gdGhlIHJlYWN0IHRhYmxlIGFyZSBjYWxjdWxhdGVkIGluIGJ1Y2tldHMsIGVhY2ggYnVja2V0IHJlcHJlc2VudGluZyBvbmUgInJvdyIgaW4gdGhlCiAqIHN0YXRpc3RpY3MgdGFibGUgKHRvdGFsLCBjb3JyZWN0LCBjb3JyZWN0IHRydWUsIGV0YykuCiAqIFRoaXMgb2JqZWN0IHN0b3JlcyBhbGwgYWNjdW11bGF0ZWQgaW5mb3JtYXRpb24gYWJvdXQgdGhpcyBidWNrZXQuCiAqCiAqIEBwcm9wIHtudW1iZXJ9IHN1bSAtIFRoZSBzdW0gb2YgdGhlIGJ1Y2tldAogKiBAcHJvcCB7bnVtYmVyfSBhdmcgLSBUaGUgYXZlcmFnZSBvZiB0aGUgYnVja2V0CiAqIEBwcm9wIHtudW1iZXJ8c3RyaW5nfSBtYXggLSBUaGUgbWF4aW1hbCB2YWx1ZSBvZiB0aGUgYnVja2V0CiAqIEBwcm9wIHtudW1iZXJ9IG1lZGlhbiAtIFRoZSBtZWRpYW4gdmFsdWUgb2YgdGhlIGJ1Y2tldAogKiBAcHJvcCB7bnVtYmVyfHN0cmluZ30gbWluIC0gVGhlIG1pbmltdW0gdmFsdWUgb2YgdGhlIGJ1Y2tldAogKiBAcHJvcCB7bnVtYmVyfSBzdGRldiAtIFRoZSBzdGFuZGFyZCBkZXZpYXRpb24gb2YgdGhlIGJ1Y2tldAogKiBAcHJvcCB7bnVtYmVyfSB2YXJpYW5jZSAtIFRoZSB2YXJpYW5jZSBvZiB0aGUgYnVja2V0CiAqIEBwcm9wIHtNZXRhSW5mb30gW21ldGFdIC0gTWV0YSBpbmZvcm1hdGlvbiBvZiB0aGUgYnVja2V0CiAqLwoKb25tZXNzYWdlID0gZnVuY3Rpb24gKGUpIHsKICBjb25zdCB7IGRhdGEsIHRyYW5zYWN0aW9uIH0gPSBlLmRhdGE7CgogIC8vIHRlbXBsYXRlCiAgLyoqIEBjb25zdCB7IEJ1Y2tldCB9ICovCiAgY29uc3QgZGVmYXVsdE9iaiA9IHsKICAgIHN1bTogMCwKICAgIGF2ZzogMCwKICAgIG1heDogIi1JbmZpbml0eSIsCiAgICBtZWRpYW46IDAsCiAgICBtaW46ICJJbmZpbml0eSIsCiAgICBzdGRldjogMCwKICAgIHZhcmlhbmNlOiAwLAogIH07CgogIC8qKiBAY29uc3Qge01ldGFJbmZvfSAqLwogIGNvbnN0IG1ldGFUZW1wbGF0ZSA9IHsKICAgIHR5cGU6IG51bGwsCiAgICBtYXhEZWNpbWFsczogMCwKICB9OwoKICAvLyBDb3B5IG9mIHRoZSB0ZW1wbGF0ZSB3aXRoIGFsbCB2YWx1ZXMgcmVwbGFjZWQgd2l0aCBOYU4KICBjb25zdCBuYW5PYmogPSB7IC4uLmRlZmF1bHRPYmogfTsKICBmb3IgKGNvbnN0IG9iaktleSBvZiBPYmplY3Qua2V5cyhuYW5PYmopKSB7CiAgICBuYW5PYmpbb2JqS2V5XSA9ICJOYU4iOwogIH0KCiAgbGV0IGNvcHkgPSBbLi4uZGF0YV0uZmlsdGVyKAogICAgKGkpID0+IGkgJiYgaS5jb2x1bW4gIT09IHVuZGVmaW5lZCAmJiBpLmNvbHVtbiAhPT0gbnVsbCwKICApOwogIGNvcHkgPSBwYXJzZVB5dGhvbkluZmluaXR5VmFsdWVzKGNvcHkpOwoKICBpZiAoY29weS5sZW5ndGggPT09IDApIHsKICAgIC8vIE5vIGRhdGEgdG8gcGVyZm9ybSBjYWxjdWxhdGlvbnMgd2l0aAogICAgcG9zdFJlc3VsdCh7IHRvdGFsOiB1bmRlZmluZWQgfSwgdHJhbnNhY3Rpb24pOwogICAgcmV0dXJuOwogIH0KCiAgY29uc3QgeyBjb2x1bW5UeXBlIH0gPSBjb3B5WzBdOwogIG1ldGFUZW1wbGF0ZS50eXBlID0gY29sdW1uVHlwZTsKCiAgY29weS5zb3J0KChhLCBiKSA9PiBhLmNvbHVtbiAtIGIuY29sdW1uKTsKCiAgLyoqIEB0eXBlIHtPYmplY3QuPHN0cmluZywgQnVja2V0Pn0gKi8KICBjb25zdCBidWNrZXRzID0ge307CiAgY29uc3QgYnVja2V0TmFOSW5mbyA9IHt9OyAvLyB1c2VkIHRvIHN0b3JlIE5hTiBpbmZvIG9mIGJ1Y2tldHMKCiAgLyoqIEB0eXBlIHtCdWNrZXR9ICovCiAgbGV0IHRvdGFsID0geyAuLi5kZWZhdWx0T2JqLCBpdGVtczogW10sIG1ldGE6IHsgLi4ubWV0YVRlbXBsYXRlIH0gfTsKCiAgdG90YWwubWF4ID0gY29weVtjb3B5Lmxlbmd0aCAtIDFdLmNvbHVtbjsKICB0b3RhbC5taW4gPSBjb3B5WzBdLmNvbHVtbjsKCiAgY29uc3QgdG90YWxOYU5JbmZvID0gewogICAgaGFzTmFOOiBjb3B5LnNvbWUoKGl0ZW0pID0+IHsKICAgICAgaWYgKGl0ZW0uY29sdW1uVHlwZSAhPT0gInN0YXR1cyIgJiYgaXNOYU4oaXRlbS5jb2x1bW4pKSB7CiAgICAgICAgcmV0dXJuIHRydWU7CiAgICAgIH0KICAgICAgcmV0dXJuIGZhbHNlOwogICAgfSksCiAgfTsKCiAgLy8gQnVja2V0IHNldHVwIHdpdGggc3VtIGFuZCBtaW4vbWF4CiAgZm9yIChjb25zdCBpdGVtIG9mIGNvcHkpIHsKICAgIGNvbnN0IGtleSA9IGAke2l0ZW0uY2F0ZWdvcnlUeXBlfV8ke2l0ZW0ucmVzdWx0VHlwZX1gOwogICAgY29uc3QgdG90YWxLZXkgPSBgJHtpdGVtLmNhdGVnb3J5VHlwZX1gOwogICAgY29uc3QgeyBjb2x1bW5UeXBlOiB0eXBlLCBjb2x1bW4sIGNvbHVtblRpdGxlOiB0aXRsZSB9ID0gaXRlbTsKICAgIGlmICghdG90YWwudGl0bGUpIHsKICAgICAgdG90YWwudGl0bGUgPSB0aXRsZTsKICAgIH0KICAgIGNvbnN0IGJ1Y2tldCA9IGJ1Y2tldHNba2V5XSB8fCB7CiAgICAgIC4uLmRlZmF1bHRPYmosCiAgICAgIHRpdGxlLAogICAgICBpdGVtczogW10sCiAgICAgIG1ldGE6IHsgLi4ubWV0YVRlbXBsYXRlIH0sCiAgICB9OwoKICAgIGNvbnN0IHN1YlRvdGFsQnVja2V0ID0gYnVja2V0c1t0b3RhbEtleV0gfHwgewogICAgICAuLi5kZWZhdWx0T2JqLAogICAgICB0aXRsZSwKICAgICAgaXRlbXM6IFtdLAogICAgICBtZXRhOiB7IC4uLm1ldGFUZW1wbGF0ZSB9LAogICAgfTsKCiAgICBjb25zdCBpdGVtSXNOYU4gPSB0eXBlICE9PSAic3RhdHVzIiAmJiBpc05hTihjb2x1bW4pOwoKICAgIC8vIGlmIG9uZSBpdGVtIGlzIE5hTiB3ZSBzdG9yZSB0aGF0IGluZm8gc28gd2UgY2FuIGRlZmF1bHQgYWxsCiAgICAvLyBjYWxjdWxhdGVkIHZhbHVlcyBmb3IgdGhpcyBidWNrZXQgdG8gTmFOCiAgICBpZiAoaXRlbUlzTmFOKSB7CiAgICAgIGJ1Y2tldE5hTkluZm9ba2V5XSA9IHsgaGFzTmFOOiB0cnVlIH07CiAgICAgIGJ1Y2tldE5hTkluZm9bdG90YWxLZXldID0geyBoYXNOYU46IHRydWUgfTsKCiAgICAgIC8vIHNldCBhbGwgdmFsdWVzIGZvciB0aGlzIGJ1Y2tldCB0byBOYU4KICAgICAgYnVja2V0c1trZXldID0geyAuLi5uYW5PYmosIHRpdGxlIH07CiAgICAgIGJ1Y2tldHNbdG90YWxLZXldID0geyAuLi5uYW5PYmosIHRpdGxlIH07CiAgICAgIGNvbnRpbnVlOwogICAgfQoKICAgIC8vIHdlIGNoZWNrIGlmIHdlIHNob3VsZCBza2lwIGNhbGN1bGF0aW9uIGZvciB0aGVzZSBidWNrZXRzCiAgICBjb25zdCBza2lwQnVja2V0ID0gc2hvdWxkU2tpcEJ1Y2tldChidWNrZXROYU5JbmZvLCBrZXkpOwogICAgY29uc3Qgc2tpcFN1YlRvdGFsID0gc2hvdWxkU2tpcEJ1Y2tldChidWNrZXROYU5JbmZvLCB0b3RhbEtleSk7CgogICAgaWYgKCFza2lwQnVja2V0KSB7CiAgICAgIGJ1Y2tldC5zdW0gPSBtYXliZUFkZChidWNrZXQuc3VtLCBjb2x1bW4sIHR5cGUpOwogICAgICB1cGRhdGVNYXhEZWNpbWFsTWV0YUluZm8oeyBjb2x1bW5UeXBlLCBjb2x1bW4sIGJ1Y2tldCB9KTsKICAgIH0KICAgIGlmICghc2tpcFN1YlRvdGFsKSB7CiAgICAgIHN1YlRvdGFsQnVja2V0LnN1bSA9IG1heWJlQWRkKHN1YlRvdGFsQnVja2V0LnN1bSwgY29sdW1uLCB0eXBlKTsKICAgICAgdXBkYXRlTWF4RGVjaW1hbE1ldGFJbmZvKHsgY29sdW1uVHlwZSwgY29sdW1uLCBidWNrZXQ6IHN1YlRvdGFsQnVja2V0IH0pOwogICAgfQogICAgaWYgKCF0b3RhbE5hTkluZm8uaGFzTmFOKSB7CiAgICAgIHRvdGFsLnN1bSA9IG1heWJlQWRkKHRvdGFsLnN1bSwgY29sdW1uLCB0eXBlKTsKICAgICAgdXBkYXRlTWF4RGVjaW1hbE1ldGFJbmZvKHsgY29sdW1uVHlwZSwgY29sdW1uLCBidWNrZXQ6IHRvdGFsIH0pOwogICAgfQoKICAgIGlmICghaXNOYU4oTnVtYmVyKGNvbHVtbikpKSB7CiAgICAgIGlmICghc2tpcEJ1Y2tldCkgewogICAgICAgIGJ1Y2tldC5tYXggPSBtYXRoU3RyaW5nTWF4KGJ1Y2tldC5tYXgsIGNvbHVtbik7CiAgICAgICAgYnVja2V0Lm1pbiA9IG1hdGhTdHJpbmdNaW4oYnVja2V0Lm1pbiwgY29sdW1uKTsKICAgICAgfQogICAgICBpZiAoIXNraXBTdWJUb3RhbCkgewogICAgICAgIHN1YlRvdGFsQnVja2V0Lm1heCA9IG1hdGhTdHJpbmdNYXgoc3ViVG90YWxCdWNrZXQubWF4LCBjb2x1bW4pOwogICAgICAgIHN1YlRvdGFsQnVja2V0Lm1pbiA9IG1hdGhTdHJpbmdNaW4oc3ViVG90YWxCdWNrZXQubWluLCBjb2x1bW4pOwogICAgICB9CiAgICB9CiAgICBpZiAoIXNraXBCdWNrZXQpIHsKICAgICAgdHJ5IHsKICAgICAgICBidWNrZXQuaXRlbXMucHVzaChpdGVtKTsKICAgICAgfSBjYXRjaCAoZSkgewogICAgICAgIGNvbnNvbGUuZSh7IGJ1Y2tldCwgYnVja2V0TWV0YTogYnVja2V0TmFOSW5mbywga2V5IH0pOwogICAgICB9CiAgICB9CiAgICBpZiAoIXNraXBTdWJUb3RhbCkgewogICAgICB0cnkgewogICAgICAgIHN1YlRvdGFsQnVja2V0Lml0ZW1zLnB1c2goaXRlbSk7CiAgICAgIH0gY2F0Y2ggKGUpIHsKICAgICAgICBjb25zb2xlLmUoeyBzdWJUb3RhbEJ1Y2tldCwgYnVja2V0TWV0YTogYnVja2V0TmFOSW5mbywgdG90YWxLZXkgfSk7CiAgICAgIH0KICAgIH0KCiAgICBidWNrZXRzW2tleV0gPSBidWNrZXQ7CiAgICBidWNrZXRzW3RvdGFsS2V5XSA9IHN1YlRvdGFsQnVja2V0OwogIH0KCiAgZm9yIChjb25zdCBbYnVja2V0LCB2YWx1ZXNdIG9mIE9iamVjdC5lbnRyaWVzKGJ1Y2tldHMpKSB7CiAgICBpZiAoc2hvdWxkU2tpcEJ1Y2tldChidWNrZXROYU5JbmZvLCBidWNrZXQpKSB7CiAgICAgIGNvbnRpbnVlOwogICAgfQogICAgY2FsY3VsYXRlTWVhbih2YWx1ZXMsIHZhbHVlcy5pdGVtcyk7CgogICAgY2FsY3VsYXRlTWVkaWFuKHZhbHVlcywgdmFsdWVzLml0ZW1zKTsKICAgIGJ1Y2tldHNbYnVja2V0XSA9IHZhbHVlczsKICB9CiAgY29uc3QgdG90YWxIYXNOYU4gPSB0b3RhbE5hTkluZm8uaGFzTmFOOwoKICBpZiAodG90YWxIYXNOYU4pIHsKICAgIHRvdGFsID0geyAuLi50b3RhbCwgLi4ubmFuT2JqIH07CiAgfSBlbHNlIHsKICAgIGNhbGN1bGF0ZU1lYW4odG90YWwsIGNvcHkpOwogICAgY2FsY3VsYXRlTWVkaWFuKHRvdGFsLCBjb3B5KTsKICB9CgogIGZvciAoY29uc3QgaXRlbSBvZiBjb3B5KSB7CiAgICBjb25zdCB7IGNvbHVtbiB9ID0gaXRlbTsKICAgIGlmIChpc05hTihOdW1iZXIoY29sdW1uKSkpIHsKICAgICAgY29udGludWU7CiAgICB9CiAgICBjb25zdCBudW1Db2wgPSBOdW1iZXIoY29sdW1uKTsKICAgIGNvbnN0IGtleSA9IGAke2l0ZW0uY2F0ZWdvcnlUeXBlfV8ke2l0ZW0ucmVzdWx0VHlwZX1gOwogICAgY29uc3QgdG90YWxLZXkgPSBgJHtpdGVtLmNhdGVnb3J5VHlwZX1gOwogICAgY29uc3QgYnVja2V0ID0gYnVja2V0c1trZXldOwogICAgY29uc3Qgc3ViVG90YWxCdWNrZXQgPSBidWNrZXRzW3RvdGFsS2V5XTsKICAgIGNvbnN0IGRpZmZCdWNrZXQgPSBudW1Db2wgLSBidWNrZXQuYXZnOwogICAgY29uc3QgZGlmZlN1YlRvdGFsID0gbnVtQ29sIC0gc3ViVG90YWxCdWNrZXQuYXZnOwogICAgY29uc3QgZGlmZlRvdGFsID0gbnVtQ29sIC0gdG90YWwuYXZnOwogICAgdG90YWwudmFyaWFuY2UgKz0gTWF0aC5wb3coZGlmZlRvdGFsLCAyKTsKICAgIGJ1Y2tldC52YXJpYW5jZSArPSBNYXRoLnBvdyhkaWZmQnVja2V0LCAyKTsKICAgIHN1YlRvdGFsQnVja2V0LnZhcmlhbmNlICs9IE1hdGgucG93KGRpZmZTdWJUb3RhbCwgMik7CiAgfQoKICBjb25zdCB0b3RhbEhhc05lZ0luZiA9IE51bWJlcih0b3RhbC5taW4pID09PSAtSW5maW5pdHk7CiAgY29uc3QgdG90YWxIYXNQb3NJbmYgPSBOdW1iZXIodG90YWwubWF4KSA9PT0gSW5maW5pdHk7CiAgdG90YWwuc3RkZXYgPSBjYWxjdWxhdGVTdGRldigKICAgIHRvdGFsSGFzTmVnSW5mLAogICAgdG90YWxIYXNQb3NJbmYsCiAgICB0b3RhbC52YXJpYW5jZSwKICAgIGNvcHkubGVuZ3RoLAogICk7CgogIGZvciAoY29uc3QgW2J1Y2tldCwgdmFsdWVzXSBvZiBPYmplY3QuZW50cmllcyhidWNrZXRzKSkgewogICAgaWYgKHNob3VsZFNraXBCdWNrZXQoYnVja2V0TmFOSW5mbywgYnVja2V0KSkgewogICAgICBmb3IgKGNvbnN0IFtrZXksIHZhbF0gb2YgT2JqZWN0LmVudHJpZXModmFsdWVzKSkgewogICAgICAgIHZhbHVlc1trZXldID0gdmFsLnRvU3RyaW5nKCk7CiAgICAgIH0KICAgICAgYnVja2V0c1tidWNrZXRdID0gdmFsdWVzOwogICAgICBjb250aW51ZTsKICAgIH0KICAgIGNvbnN0IHZhbHVlc0hhdmVOZWdJbmYgPSBOdW1iZXIodmFsdWVzLm1pbikgPT09IC1JbmZpbml0eTsKICAgIGNvbnN0IHZhbHVlc0hhdmVQb3NJbmYgPSBOdW1iZXIodG90YWwubWF4KSA9PT0gSW5maW5pdHk7CiAgICB2YWx1ZXMuc3RkZXYgPSBjYWxjdWxhdGVTdGRldigKICAgICAgdmFsdWVzSGF2ZU5lZ0luZiwKICAgICAgdmFsdWVzSGF2ZVBvc0luZiwKICAgICAgdmFsdWVzLnZhcmlhbmNlLAogICAgICB2YWx1ZXMuaXRlbXMubGVuZ3RoLAogICAgKTsKCiAgICBmb3IgKGNvbnN0IFtrZXksIHZhbF0gb2YgT2JqZWN0LmVudHJpZXModmFsdWVzKSkgewogICAgICBpZiAoa2V5ID09PSAibWV0YSIpIHsKICAgICAgICBjb250aW51ZTsKICAgICAgfQogICAgICB2YWx1ZXNba2V5XSA9IHZhbC50b1N0cmluZygpOwogICAgfQogICAgLy8gY2xlYXJpbmcgbWVtb3J5CiAgICBkZWxldGUgdmFsdWVzLml0ZW1zOwogICAgZGVsZXRlIHZhbHVlcy52YXJpYW5jZTsKICAgIGJ1Y2tldHNbYnVja2V0XSA9IHZhbHVlczsKICB9CgogIGZvciAoY29uc3QgW2tleSwgdmFsdWVdIG9mIE9iamVjdC5lbnRyaWVzKHRvdGFsKSkgewogICAgaWYgKGtleSA9PT0gIm1ldGEiKSB7CiAgICAgIGNvbnRpbnVlOwogICAgfQogICAgdG90YWxba2V5XSA9IHZhbHVlLnRvU3RyaW5nKCk7CiAgfQoKICBkZWxldGUgdG90YWwuaXRlbXM7CiAgZGVsZXRlIHRvdGFsLnZhcmlhbmNlOwoKICBjb25zdCByZXN1bHQgPSB7IGNvbHVtblR5cGUsIHRvdGFsLCAuLi5idWNrZXRzIH07CiAgcG9zdFJlc3VsdChyZXN1bHQsIHRyYW5zYWN0aW9uKTsKfTsKCmNvbnN0IHBvc3RSZXN1bHQgPSAocmVzdWx0LCB0cmFuc2FjdGlvbikgPT4gewogIC8vIGhhbmRsaW5nIGluIHRlc3RzCiAgaWYgKHRoaXMubW9ja2VkUG9zdE1lc3NhZ2UpIHsKICAgIHRoaXMubW9ja2VkUG9zdE1lc3NhZ2UoeyByZXN1bHQsIHRyYW5zYWN0aW9uIH0pOwogICAgcmV0dXJuOwogIH0KICBwb3N0TWVzc2FnZSh7IHJlc3VsdCwgdHJhbnNhY3Rpb24gfSk7Cn07Cg==",poolSize:8,name:"stats"}].map((function(e){for(var t=e.template,n=e.poolSize,i=e.name,r=[],s=function(e){var n=new Worker(t),i={worker:n,busy:!1};n.onmessage=function(e){return function(e,t){var n=e.data,i=n.transaction,r=n.result,s=Ve[i];t.busy=!1,s(r),delete Ve[i]}(e,i)},r.push(i)},l=0;l=s.length)break;r.push(c),a=s[++l]}}catch(d){o.e(d)}finally{o.f()}return r})),e.abrupt("return",Ee(r).map((function(e){var t=e.content.map((function(t,n){return a[n].map((function(t){return t[e.id]}))}));return(0,s.Z)((0,s.Z)({},e),{},{content:t})})));case 9:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),De=function(e){return e.map((function(e,t){return e.columns.map((function(e,n){var i=e.number_of_significant_digits;return new te(i,"".concat(t,"-").concat(n))}))}))},Pe=function(e,t,n){return function(n,i){var r=i.significantDigits,s=Number(n),l=n.split("."),a=(0,p.Z)(l,2),o=a[0],c=a[1];if(["sum","avg","stdev"].includes(e)){var u,d;if(G(r)&&"sum"!==e)return s.toFixed(2);var h=o.replace(/^0+/,""),f=c||"";""===h&&(f=f.replace(/^0+/,""));var g=t-(null!==(u=null===c||void 0===c?void 0:c.length)&&void 0!==u?u:0),m=r-(h.length+f.length),v=m>0,b=(null!==(d=null===c||void 0===c?void 0:c.length)&&void 0!==d?d:0)+m;if(g>0&&v&&"stdev"!==e)return g>m?s.toFixed(b):s.toFixed(t);if("avg"===e&&!v&&g<0&&"0"===n[n.length-1])return s.toFixed(t);if("stdev"===e&&v)return s.toFixed(b)}return n}},Me=function(e,t,n){var i=e.map((function(e,i){return e.map((function(e,r){var s,l={columnType:e.columnType},a=(0,f.Z)(n);try{for(a.s();!(s=a.n()).done;){var o,c=s.value,u=e[c];u&&(l[c]=u,null!==(o=null===u||void 0===u?void 0:u.sum)&&void 0!==o&&o&&t[i][r].addDataItem(u.sum))}}catch(d){a.e(d)}finally{a.f()}return l}))}));for(var r in t)for(var s in t[r])t[r][s]=t[r][s].build();return i.map((function(e,n){return e.map((function(e,i){e.columnType;var r=(0,v.Z)(e,Ke),s={};if(void 0!==r.total){for(var l=0,a=Object.entries(r);l