-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsummary.html
More file actions
42 lines (34 loc) · 1.3 KB
/
summary.html
File metadata and controls
42 lines (34 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<div class="toolbar-container">
<div class="toolbar-start">
<div class="icon fas fa-bars" id="menu"></div>
<div class="icon fas fa-arrow-left" id="back">
</div>
</div>
<!-- modes-->
<div class="toolbar-center">
</div>
<!-- layout options -->
<div class="toolbar-end">
</div>
</div>
<div class="wrapper">
<main>
<div id="container">
<div class="summary-container">
<h1>Run summary</h1>
<h2>Run parameters</h2>
<div class="summary-param-container" id="summary-param-container">
</div>
<h2>Average objective per run</h2>
<table id="average-objective-table"></table>
<svg class="summary-chart" id="chart-avg-objective" width="100%" height="600"></svg>
<h2>Average Execution time per run</h2>
<table id="average-execution-table"></table>
<svg class="summary-chart" id="execution-chart" width="100%" height="600"></svg>
<h2>Average Evaluated solutions per run</h2>
<table id="average-evaluated-table"></table>
<svg class="summary-chart" id="evaluated-chart" width="100%" height="600"></svg>
</div>
</div>
</main>
</div>