diff --git a/benchmarking/public/results.html b/benchmarking/public/results.html
index 26c2832..d26d8d0 100644
--- a/benchmarking/public/results.html
+++ b/benchmarking/public/results.html
@@ -41,7 +41,7 @@
justify-content: space-around;
}
canvas {
- max-width: 750px;
+ max-width: 730px;
}
@@ -53,10 +53,27 @@
Select Case
Dimensions
diff --git a/benchmarking/results/index.js b/benchmarking/results/index.js
index b89c87f..d0f4301 100644
--- a/benchmarking/results/index.js
+++ b/benchmarking/results/index.js
@@ -17,11 +17,11 @@ import win_ffox_simplify_vs_true from './win_ffox_simplify_vs_true.json'
export default {
set1: [
- win_chro_simplify_vs_false,
win_ffox_simplify_vs_false,
- win_edge_simplify_vs_false,
- win_chro_simplify_vs_true,
win_ffox_simplify_vs_true,
+ win_chro_simplify_vs_false,
+ win_chro_simplify_vs_true,
+ win_edge_simplify_vs_false,
win_edge_simplify_vs_true
],
set2: [win_edge_simplify_stack_false, win_edge_simplify_stack_true],
@@ -36,5 +36,6 @@ export default {
ubu_ffox_bavaria_jsstack_false,
ubu_ffox_bavaria_vs_true,
ubu_ffox_bavaria_jsstack_true
- ]
+ ],
+ set5: []
}
diff --git a/benchmarking/src/results.js b/benchmarking/src/results.js
index e05103f..ee7860d 100644
--- a/benchmarking/src/results.js
+++ b/benchmarking/src/results.js
@@ -22,7 +22,8 @@ const dimensionMap = {
set1: [[0], [0, 1, 2], [0], [0, 1], [0]],
set2: [[0], [2], [0], [0, 1], [1]],
set3: [[0], [0, 3], [1], [0, 1], [0]],
- set4: [[0], [0], [1], [0, 1], [0, 2]]
+ set4: [[0], [0], [1], [0, 1], [0, 2]],
+ set5: [[1], [0, 1, 3], [0], [0, 1], [0]]
}
function setDimensions(set) {
let map = dimensionMap[set]