-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathoutput.html
310 lines (271 loc) · 292 KB
/
output.html
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Branch and Bound Visualization</title>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
crossorigin="anonymous"
/>
<script src="https://d3js.org/d3.v6.min.js"></script>
<style>
.node circle {
fill: #fff;
stroke: steelblue;
stroke-width: 3px;
}
.node text {
font: 12px sans-serif;
}
.link {
fill: none;
stroke: #ccc;
stroke-width: 2px;
}
#node-details {
padding: 10px;
border: 1px solid #ccc;
margin-top: 10px;
}
</style>
</head>
<body>
<div class="container mt-4">
<h1>Branch and Bound Visualization</h1>
<p class="text-muted">
This page visualizes the branch and bound algorithm for the 0/1 knapsack
problem. The tree is constructed using D3.js and the slider allows you
to see the progress of the algorithm.
</p>
<div class="card my-3">
<div class="card-body">
<h5 class="card-title">Instance Information</h5>
<p class="card-text"><h2>
<span class="badge bg-primary rounded-pill"
>Capacity: 20</span
>
</h2>
<table class="table">
<thead>
<tr>
<th scope="col">Items</th>
<th scope="col">Value</th>
<th scope="col">Weight</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Item 0</th>
<td>1</td>
<td>1</td>
</tr>
<tr>
<th scope="row">Item 1</th>
<td>1</td>
<td>2</td>
</tr>
<tr>
<th scope="row">Item 2</th>
<td>1</td>
<td>3</td>
</tr>
<tr>
<th scope="row">Item 3</th>
<td>1</td>
<td>4</td>
</tr>
<tr>
<th scope="row">Item 4</th>
<td>1</td>
<td>5</td>
</tr>
<tr>
<th scope="row">Item 5</th>
<td>1</td>
<td>6</td>
</tr>
<tr>
<th scope="row">Item 6</th>
<td>1</td>
<td>7</td>
</tr>
<tr>
<th scope="row">Item 7</th>
<td>1</td>
<td>8</td>
</tr>
<tr>
<th scope="row">Item 8</th>
<td>1</td>
<td>9</td>
</tr>
<tr>
<th scope="row">Item 9</th>
<td>1</td>
<td>10</td>
</tr>
</tbody>
</table></p>
</div>
</div>
<div class="row mb-4">
<div class="col-lg-12">
<div class="graph-container">
<svg id="bnb-graph"></svg>
</div>
</div>
</div>
<div class="card my-3">
<div class="card-body">
<h5 class="card-title">Control Panel</h5>
<p>
Use the slider to see the progress of the branch and bound
algorithm. The details of the selected node will be displayed below
the slider.
</p>
<div id="slider-container" class="mt-2">
<div class="d-flex align-items-center justify-content-between">
<label for="indexSlider" class="form-label me-2"
>Search Progress:</label
>
<span id="sliderValue" class="badge bg-primary rounded-pill"
>97</span
>
</div>
<div class="input-group my-2">
<button id="decrementButton" class="btn btn-outline-primary">
-
</button>
<input
type="range"
class="form-range"
id="indexSlider"
min="0"
max="97"
value="97"
/>
<button id="incrementButton" class="btn btn-outline-primary">
+
</button>
</div>
</div>
</div>
</div>
<div class="card my-3" id="node-details">
Click on a node to see details here.
</div>
</div>
<script>
document.addEventListener("DOMContentLoaded", function () {
const treeData = {"node_id":0,"created_at":0,"processed_at":0,"label":"5.8","color":"#adb5bd","children":[{"node_id":1,"created_at":0,"processed_at":1,"label":"5.0","color":"#20c997","children":[]},{"node_id":2,"created_at":0,"processed_at":2,"label":"5.8","color":"#adb5bd","children":[{"node_id":3,"created_at":2,"processed_at":3,"label":"5.1","color":"#adb5bd","children":[{"node_id":5,"created_at":3,"processed_at":5,"label":"4.6","color":"#adb5bd","children":[]},{"node_id":6,"created_at":3,"processed_at":6,"label":"5.1","color":"#adb5bd","children":[{"node_id":9,"created_at":6,"processed_at":9,"label":"4.7","color":"#adb5bd","children":[]},{"node_id":10,"created_at":6,"processed_at":10,"label":"5.1","color":"#adb5bd","children":[{"node_id":15,"created_at":10,"processed_at":15,"label":"4.9","color":"#adb5bd","children":[]},{"node_id":16,"created_at":10,"processed_at":16,"label":"5.1","color":"#adb5bd","children":[{"node_id":23,"created_at":16,"processed_at":23,"label":"5.0","color":"#20c997","children":[]},{"node_id":24,"created_at":16,"processed_at":24,"label":"5.1","color":"#adb5bd","children":[{"node_id":35,"created_at":24,"processed_at":35,"label":"5.1","color":"#adb5bd","children":[{"node_id":53,"created_at":35,"processed_at":53,"label":"5.1","color":"#adb5bd","children":[{"node_id":75,"created_at":53,"processed_at":75,"label":"5.1","color":"#adb5bd","children":[{"node_id":99,"created_at":75,"processed_at":null,"label":"5.0","color":"#20c997","children":[]},{"node_id":100,"created_at":75,"processed_at":null,"label":"6.0","color":"#dc3545","children":[]}]},{"node_id":76,"created_at":53,"processed_at":76,"label":"5.2","color":"#dc3545","children":[]}]},{"node_id":54,"created_at":35,"processed_at":54,"label":"5.2","color":"#dc3545","children":[]}]},{"node_id":36,"created_at":24,"processed_at":36,"label":"5.2","color":"#dc3545","children":[]}]}]}]}]}]},{"node_id":4,"created_at":2,"processed_at":4,"label":"5.8","color":"#adb5bd","children":[{"node_id":7,"created_at":4,"processed_at":7,"label":"5.3","color":"#adb5bd","children":[{"node_id":11,"created_at":7,"processed_at":11,"label":"4.9","color":"#adb5bd","children":[]},{"node_id":12,"created_at":7,"processed_at":12,"label":"5.3","color":"#adb5bd","children":[{"node_id":17,"created_at":12,"processed_at":17,"label":"5.0","color":"#20c997","children":[]},{"node_id":18,"created_at":12,"processed_at":18,"label":"5.3","color":"#adb5bd","children":[{"node_id":25,"created_at":18,"processed_at":25,"label":"5.1","color":"#adb5bd","children":[{"node_id":37,"created_at":25,"processed_at":37,"label":"5.0","color":"#20c997","children":[]},{"node_id":38,"created_at":25,"processed_at":38,"label":"5.1","color":"#adb5bd","children":[{"node_id":55,"created_at":38,"processed_at":55,"label":"5.1","color":"#adb5bd","children":[{"node_id":77,"created_at":55,"processed_at":77,"label":"5.1","color":"#adb5bd","children":[{"node_id":101,"created_at":77,"processed_at":null,"label":"5.0","color":"#20c997","children":[]},{"node_id":102,"created_at":77,"processed_at":null,"label":"6.0","color":"#dc3545","children":[]}]},{"node_id":78,"created_at":55,"processed_at":78,"label":"5.2","color":"#dc3545","children":[]}]},{"node_id":56,"created_at":38,"processed_at":56,"label":"5.2","color":"#dc3545","children":[]}]}]},{"node_id":26,"created_at":18,"processed_at":26,"label":"5.3","color":"#adb5bd","children":[{"node_id":39,"created_at":26,"processed_at":39,"label":"5.2","color":"#adb5bd","children":[{"node_id":57,"created_at":39,"processed_at":57,"label":"5.2","color":"#adb5bd","children":[{"node_id":79,"created_at":57,"processed_at":79,"label":"5.2","color":"#adb5bd","children":[{"node_id":103,"created_at":79,"processed_at":null,"label":"5.0","color":"#20c997","children":[]},{"node_id":104,"created_at":79,"processed_at":null,"label":"6.0","color":"#dc3545","children":[]}]},{"node_id":80,"created_at":57,"processed_at":80,"label":"5.3","color":"#dc3545","children":[]}]},{"node_id":58,"created_at":39,"processed_at":58,"label":"5.3","color":"#dc3545","children":[]}]},{"node_id":40,"created_at":26,"processed_at":40,"label":"5.4","color":"#dc3545","children":[]}]}]}]}]},{"node_id":8,"created_at":4,"processed_at":8,"label":"5.8","color":"#adb5bd","children":[{"node_id":13,"created_at":8,"processed_at":13,"label":"5.4","color":"#adb5bd","children":[{"node_id":19,"created_at":13,"processed_at":19,"label":"5.1","color":"#adb5bd","children":[{"node_id":27,"created_at":19,"processed_at":27,"label":"4.9","color":"#adb5bd","children":[]},{"node_id":28,"created_at":19,"processed_at":28,"label":"5.1","color":"#adb5bd","children":[{"node_id":41,"created_at":28,"processed_at":41,"label":"5.0","color":"#20c997","children":[]},{"node_id":42,"created_at":28,"processed_at":42,"label":"5.1","color":"#adb5bd","children":[{"node_id":59,"created_at":42,"processed_at":59,"label":"5.1","color":"#adb5bd","children":[{"node_id":81,"created_at":59,"processed_at":81,"label":"5.1","color":"#adb5bd","children":[{"node_id":105,"created_at":81,"processed_at":null,"label":"5.0","color":"#20c997","children":[]},{"node_id":106,"created_at":81,"processed_at":null,"label":"6.0","color":"#dc3545","children":[]}]},{"node_id":82,"created_at":59,"processed_at":82,"label":"5.2","color":"#dc3545","children":[]}]},{"node_id":60,"created_at":42,"processed_at":60,"label":"5.2","color":"#dc3545","children":[]}]}]}]},{"node_id":20,"created_at":13,"processed_at":20,"label":"5.4","color":"#adb5bd","children":[{"node_id":29,"created_at":20,"processed_at":29,"label":"5.2","color":"#adb5bd","children":[{"node_id":43,"created_at":29,"processed_at":43,"label":"5.1","color":"#adb5bd","children":[{"node_id":61,"created_at":43,"processed_at":61,"label":"5.0","color":"#20c997","children":[]},{"node_id":62,"created_at":43,"processed_at":62,"label":"5.1","color":"#adb5bd","children":[{"node_id":83,"created_at":62,"processed_at":83,"label":"5.1","color":"#adb5bd","children":[{"node_id":107,"created_at":83,"processed_at":null,"label":"5.0","color":"#20c997","children":[]},{"node_id":108,"created_at":83,"processed_at":null,"label":"6.0","color":"#dc3545","children":[]}]},{"node_id":84,"created_at":62,"processed_at":84,"label":"5.2","color":"#dc3545","children":[]}]}]},{"node_id":44,"created_at":29,"processed_at":44,"label":"5.2","color":"#adb5bd","children":[{"node_id":63,"created_at":44,"processed_at":63,"label":"5.2","color":"#adb5bd","children":[{"node_id":85,"created_at":63,"processed_at":85,"label":"5.2","color":"#adb5bd","children":[{"node_id":109,"created_at":85,"processed_at":null,"label":"5.0","color":"#20c997","children":[]},{"node_id":110,"created_at":85,"processed_at":null,"label":"6.0","color":"#dc3545","children":[]}]},{"node_id":86,"created_at":63,"processed_at":86,"label":"5.3","color":"#dc3545","children":[]}]},{"node_id":64,"created_at":44,"processed_at":64,"label":"5.3","color":"#dc3545","children":[]}]}]},{"node_id":30,"created_at":20,"processed_at":30,"label":"5.4","color":"#adb5bd","children":[{"node_id":45,"created_at":30,"processed_at":45,"label":"5.4","color":"#adb5bd","children":[{"node_id":65,"created_at":45,"processed_at":65,"label":"5.3","color":"#adb5bd","children":[{"node_id":87,"created_at":65,"processed_at":87,"label":"5.3","color":"#adb5bd","children":[{"node_id":111,"created_at":87,"processed_at":null,"label":"5.0","color":"#20c997","children":[]},{"node_id":112,"created_at":87,"processed_at":null,"label":"6.0","color":"#dc3545","children":[]}]},{"node_id":88,"created_at":65,"processed_at":88,"label":"5.4","color":"#dc3545","children":[]}]},{"node_id":66,"created_at":45,"processed_at":66,"label":"5.4","color":"#dc3545","children":[]}]},{"node_id":46,"created_at":30,"processed_at":46,"label":"5.5","color":"#dc3545","children":[]}]}]}]},{"node_id":14,"created_at":8,"processed_at":14,"label":"5.8","color":"#adb5bd","children":[{"node_id":21,"created_at":14,"processed_at":21,"label":"5.6","color":"#adb5bd","children":[{"node_id":31,"created_at":21,"processed_at":31,"label":"5.4","color":"#adb5bd","children":[{"node_id":47,"created_at":31,"processed_at":47,"label":"5.2","color":"#adb5bd","children":[{"node_id":67,"created_at":47,"processed_at":67,"label":"5.1","color":"#adb5bd","children":[{"node_id":89,"created_at":67,"processed_at":89,"label":"5.0","color":"#20c997","children":[]},{"node_id":90,"created_at":67,"processed_at":90,"label":"5.1","color":"#adb5bd","children":[{"node_id":113,"created_at":90,"processed_at":null,"label":"5.0","color":"#20c997","children":[]},{"node_id":114,"created_at":90,"processed_at":null,"label":"6.0","color":"#dc3545","children":[]}]}]},{"node_id":68,"created_at":47,"processed_at":68,"label":"5.2","color":"#adb5bd","children":[{"node_id":91,"created_at":68,"processed_at":91,"label":"5.2","color":"#adb5bd","children":[{"node_id":115,"created_at":91,"processed_at":null,"label":"5.0","color":"#20c997","children":[]},{"node_id":116,"created_at":91,"processed_at":null,"label":"6.0","color":"#dc3545","children":[]}]},{"node_id":92,"created_at":68,"processed_at":92,"label":"5.3","color":"#dc3545","children":[]}]}]},{"node_id":48,"created_at":31,"processed_at":48,"label":"5.4","color":"#adb5bd","children":[{"node_id":69,"created_at":48,"processed_at":69,"label":"5.3","color":"#adb5bd","children":[{"node_id":93,"created_at":69,"processed_at":93,"label":"5.3","color":"#adb5bd","children":[{"node_id":117,"created_at":93,"processed_at":null,"label":"5.0","color":"#20c997","children":[]},{"node_id":118,"created_at":93,"processed_at":null,"label":"6.0","color":"#dc3545","children":[]}]},{"node_id":94,"created_at":69,"processed_at":94,"label":"5.4","color":"#dc3545","children":[]}]},{"node_id":70,"created_at":48,"processed_at":70,"label":"5.4","color":"#dc3545","children":[]}]}]},{"node_id":32,"created_at":21,"processed_at":32,"label":"5.6","color":"#adb5bd","children":[{"node_id":49,"created_at":32,"processed_at":49,"label":"5.5","color":"#adb5bd","children":[{"node_id":71,"created_at":49,"processed_at":71,"label":"5.4","color":"#adb5bd","children":[{"node_id":95,"created_at":71,"processed_at":95,"label":"5.4","color":"#adb5bd","children":[{"node_id":119,"created_at":95,"processed_at":null,"label":"5.0","color":"#20c997","children":[]},{"node_id":120,"created_at":95,"processed_at":null,"label":"6.0","color":"#dc3545","children":[]}]},{"node_id":96,"created_at":71,"processed_at":96,"label":"5.5","color":"#dc3545","children":[]}]},{"node_id":72,"created_at":49,"processed_at":72,"label":"5.6","color":"#dc3545","children":[]}]},{"node_id":50,"created_at":32,"processed_at":50,"label":"5.6","color":"#dc3545","children":[]}]}]},{"node_id":22,"created_at":14,"processed_at":22,"label":"5.8","color":"#adb5bd","children":[{"node_id":33,"created_at":22,"processed_at":33,"label":"5.7","color":"#adb5bd","children":[{"node_id":51,"created_at":33,"processed_at":51,"label":"5.6","color":"#adb5bd","children":[{"node_id":73,"created_at":51,"processed_at":73,"label":"5.6","color":"#adb5bd","children":[{"node_id":97,"created_at":73,"processed_at":97,"label":"5.5","color":"#adb5bd","children":[{"node_id":121,"created_at":97,"processed_at":null,"label":"5.0","color":"#20c997","children":[]},{"node_id":122,"created_at":97,"processed_at":null,"label":"6.0","color":"#dc3545","children":[]}]},{"node_id":98,"created_at":73,"processed_at":null,"label":"5.6","color":"#dc3545","children":[]}]},{"node_id":74,"created_at":51,"processed_at":74,"label":"5.7","color":"#dc3545","children":[]}]},{"node_id":52,"created_at":33,"processed_at":52,"label":"5.8","color":"#dc3545","children":[]}]},{"node_id":34,"created_at":22,"processed_at":34,"label":"5.9","color":"#dc3545","children":[]}]}]}]}]}]}]};
const node_details = {0: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> -inf</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.833</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 5</th>\n <td>0.833</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 6</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 1: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.833</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Feasible</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 5</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 6</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 2: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.833</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 5</th>\n <td>0.833</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 6</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 3: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.833</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 5</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 6</th>\n <td>0.143</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 4: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.833</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 5</th>\n <td>0.833</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 6</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 5: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.833</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Pruned</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 5</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 6</th>\n <td>0.571</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 6: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.833</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 5</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 6</th>\n <td>0.143</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 7: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.833</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 5</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 6</th>\n <td>0.286</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 8: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.833</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 5</th>\n <td>0.833</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 6</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 9: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.833</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Pruned</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 5</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 6</th>\n <td>0.714</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 10: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.833</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 5</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 6</th>\n <td>0.143</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 11: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.833</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Pruned</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 5</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 6</th>\n <td>0.857</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 12: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.833</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 5</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 6</th>\n <td>0.286</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 13: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.833</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 5</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 6</th>\n <td>0.429</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 14: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.833</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 5</th>\n <td>0.833</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 6</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 15: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.833</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Pruned</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 5</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 6</th>\n <td>0.857</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 16: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.833</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 5</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 6</th>\n <td>0.143</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 17: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.833</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Pruned</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 5</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 6</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 18: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.833</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 5</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 6</th>\n <td>0.286</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 19: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.833</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 5</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 6</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 7</th>\n <td>0.125</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 20: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.833</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 5</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 6</th>\n <td>0.429</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 21: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.833</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 5</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 6</th>\n <td>0.571</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 22: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.714</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 5</th>\n <td>0.833</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 6</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 23: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.714</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Pruned</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 6</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 24: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.714</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 6</th>\n <td>0.143</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 25: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.714</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 6</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 7</th>\n <td>0.125</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 26: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.714</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 6</th>\n <td>0.286</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 27: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.714</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Pruned</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 6</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 7</th>\n <td>0.875</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 28: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.714</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 6</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 7</th>\n <td>0.125</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 29: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.714</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 6</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 7</th>\n <td>0.25</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 30: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.714</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 6</th>\n <td>0.429</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 31: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.714</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 6</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 7</th>\n <td>0.375</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 32: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.714</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 6</th>\n <td>0.571</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 33: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.625</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 6</th>\n <td>0.714</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 34: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.625</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Infeasible</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 6</th>\n <td>-0.143</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 35: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.625</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 7</th>\n <td>0.125</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 36: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.625</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Infeasible</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 7</th>\n <td>-0.75</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 37: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.625</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Pruned</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 7</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 38: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.625</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 7</th>\n <td>0.125</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 39: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.625</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 7</th>\n <td>0.25</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 40: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.625</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Infeasible</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 7</th>\n <td>-0.625</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 41: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.625</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Pruned</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 7</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 42: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.625</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 7</th>\n <td>0.125</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 43: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.625</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 7</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 8</th>\n <td>0.111</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 44: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.625</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 7</th>\n <td>0.25</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 45: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.625</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 7</th>\n <td>0.375</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 46: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.625</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Infeasible</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 7</th>\n <td>-0.5</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 47: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.625</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 7</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 8</th>\n <td>0.222</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 48: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.625</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 7</th>\n <td>0.375</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 49: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.625</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 7</th>\n <td>0.5</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 50: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.625</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Infeasible</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 7</th>\n <td>-0.375</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 51: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.556</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 7</th>\n <td>0.625</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 52: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.556</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Infeasible</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 7</th>\n <td>-0.25</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 53: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.556</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 8</th>\n <td>0.111</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 54: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.556</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Infeasible</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 7</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>-0.778</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 55: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.556</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 8</th>\n <td>0.111</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 56: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.556</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Infeasible</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 7</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>-0.778</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 57: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.556</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 8</th>\n <td>0.222</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 58: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.556</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Infeasible</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 7</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>-0.667</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 59: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.556</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 8</th>\n <td>0.111</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 60: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.556</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Infeasible</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 7</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>-0.778</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 61: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.556</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Pruned</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 62: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.556</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 7</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 8</th>\n <td>0.111</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 63: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.556</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 8</th>\n <td>0.222</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 64: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.556</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Infeasible</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 7</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>-0.667</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 65: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.556</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 8</th>\n <td>0.333</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 66: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.556</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Infeasible</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 7</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>-0.556</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 67: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.556</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 9</th>\n <td>0.1</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 68: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.556</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 7</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 8</th>\n <td>0.222</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 69: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.556</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 8</th>\n <td>0.333</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 70: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.556</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Infeasible</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 7</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>-0.556</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 71: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.556</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 8</th>\n <td>0.444</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 72: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.556</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Infeasible</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 7</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>-0.444</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 73: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.5</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 8</th>\n <td>0.556</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 74: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.5</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Infeasible</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 7</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 8</th>\n <td>-0.333</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>0.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 75: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.5</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 9</th>\n <td>0.1</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 76: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.5</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Infeasible</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 8</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>-0.8</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 77: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.5</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 9</th>\n <td>0.1</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 78: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.5</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Infeasible</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 8</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>-0.8</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 79: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.5</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 9</th>\n <td>0.2</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 80: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.5</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Infeasible</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 8</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>-0.7</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 81: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.5</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 9</th>\n <td>0.1</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 82: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.5</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Infeasible</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 8</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>-0.8</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 83: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.5</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 7</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 9</th>\n <td>0.1</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 84: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.5</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Infeasible</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 7</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 8</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>-0.8</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 85: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.5</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 9</th>\n <td>0.2</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 86: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.5</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Infeasible</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 8</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>-0.7</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 87: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.5</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 9</th>\n <td>0.3</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 88: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.5</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Infeasible</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 8</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>-0.6</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 89: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.5</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Pruned</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>1.0</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 90: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.5</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 8</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 9</th>\n <td>0.1</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 91: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.5</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 7</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 9</th>\n <td>0.2</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 92: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.5</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Infeasible</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 7</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 8</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>-0.7</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 93: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.5</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 9</th>\n <td>0.3</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 94: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.5</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Infeasible</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 8</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>-0.6</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 95: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.5</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 9</th>\n <td>0.4</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 96: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.5</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Infeasible</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 8</th>\n <td>1.0</td>\n </tr>\n \n <tr\n >\n <th scope="row">Item 9</th>\n <td>-0.5</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>', 97: '<div class="card-body">\n<h5 class="card-title">\n Node Details\n</h5>\n <div class="card-body">\n <div class="row mb-2">\n <div class="col-md-4">\n <p class="mb-0"><b>Lower Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Upper Bound:</b> 5.0</p>\n </div>\n <div class="col-md-4">\n <p class="mb-0"><b>Status:</b> Branched</p>\n </div>\n </div>\n </div>\n <table class="table mb-0">\n <colgroup>\n <col style="width: 30%;"> <!-- Adjust the width as needed for the Items column -->\n <col style="width: 70%;"> <!-- Adjust the width as needed for the x column -->\n </colgroup>\n <thead>\n <tr>\n <th scope="col">Items</th>\n <th scope="col">x</th>\n </tr>\n </thead>\n <tbody>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 0</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 1</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 2</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 3</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 4</th>\n <td>1.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 5</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 6</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 7</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-secondary"\n >\n <th scope="row">Item 8</th>\n <td>0.0</td>\n </tr>\n \n <tr\n \n class="table-warning"\n >\n <th scope="row">Item 9</th>\n <td>0.5</td>\n </tr>\n \n </tbody>\n </table>\n <!-- Solutions found during search-->\n \n</div>'};
const iterations = [0, 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, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97];
const indexSlider = document.getElementById('indexSlider');
const sliderValue = document.getElementById('sliderValue');
const incrementButton = document.getElementById('incrementButton');
const decrementButton = document.getElementById('decrementButton');
var container = d3.select('.graph-container').node();
const width = container.getBoundingClientRect().width; // Gets the width
const height = 0.8*width;
const svg = d3.select("#bnb-graph")
.attr("width", width)
.attr("height", height)
.append("g")
.attr("transform", "translate(40,0)");
const root = d3.hierarchy(treeData);
const treeLayout = d3.tree().size([height, width - 160]);
treeLayout(root);
const links = svg.selectAll(".link")
.data(root.links())
.enter().append("path")
.attr("class", "link")
.attr("d", d3.linkHorizontal()
.x(d => d.y)
.y(d => d.x));
const nodes = svg.selectAll(".node")
.data(root.descendants())
.enter().append("g")
.attr("class", "node")
.attr("transform", d => `translate(${d.y},${d.x})`);
nodes.append("circle")
.attr("r", 4)
.style("fill", d => d.data.color) // Apply the node color
.style("stroke", d => d.data.color)
.on("click", (event, d) => {
indexSlider.value = d.data.processed_at;
if(d.data.processed_at == null){
indexSlider.value = 97;
}
updateSliderValueDisplay();
});
nodes.append("text")
.attr("dy", "0.35em")
.attr("x", d => d.children ? -13 : 13)
.style("text-anchor", d => d.children ? "end" : "start")
.text(d => d.data.label);
// Listen for slider changes to update node opacities
document.getElementById("indexSlider").addEventListener("input", function () {
document.getElementById("sliderValue").textContent = this.value;
updateOpacity();
});
function opacity(d) {
if (d.data.created_at > indexSlider.value) {
return 0.1;
}
if (d.data.processed_at == null ){
return 0.5;
}
if (d.data.processed_at > indexSlider.value) {
return 0.5;
}
return 1.0;
}
function updateOpacity() {
const sliderValue = +document.getElementById("indexSlider").value;
svg.selectAll(".node circle")
.style("opacity", opacity);
svg.selectAll(".node circle")
.attr("r", d => d.data.processed_at == sliderValue ? 8 : 4);
svg.selectAll(".node text")
.style("opacity", opacity);
svg.selectAll(".link")
.style("opacity", d => Math.min(opacity(d.source), opacity(d.target)));
}
// Update slider value text display
function updateSliderValueDisplay() {
sliderValue.textContent = indexSlider.value;
const details = node_details[iterations[indexSlider.value]] || "No details available.";
document.getElementById("node-details").innerHTML = details;
updateOpacity();
}
// Increment slider value
incrementButton.addEventListener('click', function () {
if (indexSlider.value < parseInt(indexSlider.max)) {
indexSlider.value = parseInt(indexSlider.value) + 1;
updateSliderValueDisplay();
}
});
// Decrement slider value
decrementButton.addEventListener('click', function () {
if (indexSlider.value > parseInt(indexSlider.min)) {
indexSlider.value = parseInt(indexSlider.value) - 1;
updateSliderValueDisplay();
}
});
// Initial update
updateSliderValueDisplay();
// After setting up the nodes, call updateOpacity initially
updateOpacity();
// Update display when the slider value changes
indexSlider.addEventListener('input', updateSliderValueDisplay);
});
</script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"
></script>
</body>
</html>