-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (34 loc) · 1.29 KB
/
index.html
File metadata and controls
51 lines (34 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="js/script.js" charset="utf-8"></script>
<script src="js/tabularMethod.js" charset="utf-8"></script>
<script src="js/arrayUtils.js" charset="utf-8"></script>
<link href="https://fonts.googleapis.com/css2?family=Raleway&family=Open+Sans&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<link href="css/styles.css" rel="stylesheet">
</head>
<body>
<div id=page_header>
<h1 id=page_title>Tabular Method</h1>
</div>
<div class="row">
<div class="col s12 center">
<input id="min_terms_input" type="text" placeholder="Minterms (eg. 5,7,11,12,27,29)" value="5,7,11,12,27,29">
<input id="dont_care_terms_input" type="text" placeholder="Don't-care terms (eg. 14,20,21,22,23)" value="14,20,21,22,23">
<div class="section">
<a
class="waves-effect waves-light btn-large center"
onclick="displayMinimalCoverageOfInput()"
>
Minimize
</a>
</div>
<div id="result_section" class="section hide">
<h4>Minimal coverage</h2>
<h3 id=minimal_coverage_result></h3>
</div>
</div>
</div>
</body>
</html>