-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (51 loc) · 2 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="manifest" href="manifest.json">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>N-Queens Genetic Algorithm</title>
</head>
<body>
<div class="main-wrapper">
<div class="content-wrapper">
<div id="toolbar" class="toolbar">
<div id="title" class="title">
N-Queens Solver
</div>
<div id="menu" class="menu">
<label for="nValue">N value:</label>
<input type="number" id="nValue" placeholder="Enter N value">
<label for="numGenerations">Number of Generations:</label>
<input type="number" id="numGenerations">
<label for="populationSize">Population Size:</label>
<input type="number" id="populationSize">
<label for="mutationRate">Mutation Rate (0 to 1):</label>
<input type="number" id="mutationRate">
<div class="button-container">
<button id="start" onclick="prepareBoard(); startCalculation();">
<span class="run-icon"></span>
</button>
</div>
<p id="bestFitness">Best Fitness: 0</p>
</div>
</div>
<div id="boardWrapper">
<div id="board"></div>
</div>
</div>
<div id="progressContainer">
<div id="progressBar"></div>
</div>
</div>
<script src="script.js"></script>
<script>
if ('serviceWorker' in navigator) {
navigator.serviceWorker.register('sw.js').then(() => {
console.log('Service Worker registrado com sucesso!');
});
}
</script>
</body>
</html>