-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
102 lines (84 loc) · 3.59 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
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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Дослідження повноти систем булевих функцій</title>
<link rel="stylesheet" href="css/materialize.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="col s12 m6 z-depth-1">
<div class="row">
<div class="input-field col s12">
<input id="number_of_vars" onchange="draw_table()" type="number" value="3" min="1" max="10">
<label>Кiлькiсть змiнних:</label>
</div>
<div class="col s12">
<table class="bordered" id="table" align="center">
<thead>
<tr>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
</div>
<div class="col s12 m6">
<div class="row z-depth-1" style="padding: 7px;">
<div class="col s12">
<b>Швидкий ввід</b>
</div>
<div class="col s4">
<button class="btn" onclick="only('0')">Всюди 0</button>
</div>
<div class="col s4">
<button class="btn" onclick="only('1')">Всюди 1</button>
</div>
<div class="col s4">
<button class="btn" onclick="only('?')">Всюди ?</button>
</div>
</div>
<div class="row z-depth-1" style="padding: 7px;">
<div class="col s12">
<b>Критерії мінімізації</b>
</div>
<form action="#">
<p>
<input name="group1" checked type="radio" id="operations_selected"/>
<label for="operations_selected">Найменша кількість операцій в поліномі</label>
</p>
<p>
<input name="group1" type="radio" id="dodanki_selected"/>
<label for="dodanki_selected">Найменша кількість доданків в поліномі</label>
</p>
<p>
<input name="group1" type="radio" id="naymensha_kilkist_vhodgen"/>
<label for="naymensha_kilkist_vhodgen">Найменша кількість входжень змінних в поліном</label>
</p>
</form>
</div>
<div class="row">
<div class="col s12">
<button class="btn green" onclick="dovuznachenna_funkcii()">Довизначення функції</button>
</div>
<div class="col s12">
<button onclick="minimization()" class="btn red">Мінімізація функції в класі ПРМФП</button>
</div>
</div>
<div id="dovuznachenna_funkcii" style="display: none; padding: 5px;" class="z-depth-1">
<b class="collection-header">Довизначені функції</b>
<ul class="collection">
</ul>
</div>
<div id = 'log'></div>
</div>
</div>
</div>
<script src="js/jquery.js"></script>
<script src="js/materialize.js"></script>
<script src="js/script.js"></script>
</body>
</html>