cdm-utils/Boolean-Algebra/index.html
2021-12-13 23:14:40 +02:00

160 lines
7.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="favicon.png">
<title>Boolean Algebra Calculator</title>
<link rel="stylesheet" href="../style.css">
</head>
<body>
<div class="gradient"></div>
<div class="container" id="container">
<header>
<div class="content">
<h3><a href="../">CDM Utils</a></h3>
<div class="theme">
<h3><a href="../Set-Algebra/">Set Algebra</a></h3>
<h3><a href="" class="current">Boolean Algebra</a></h3>
<h3><a href="../Knowledgebase/">Knowledgebase</a></h3>
<h3><a href="../Info/">Info</a></h3>
</div>
</div>
</header>
<h1 class="title">Boolean Algebra Calculator</h1>
<div class="wrapper no-top-margin">
<div class="wrap-side">
<h1>Values</h1>
<div id="values">
<div class="input-wrap">
<h1 class="text">Value A = </h1>
<div class="input"><input type="value" id="value0" onkeydown="return checkInputValue(event.key, this.value, this.id)" placeholder="e.g. 0 or 1" /></div>
</div>
<div class="input-wrap">
<h1 class="text">Value B = </h1>
<div class="input"><input type="value" id="value1" onkeydown="return checkInputValue(event.key, this.value, this.id)" placeholder="e.g. 0 or 1" /></div>
</div>
</div>
<input class="addValue" type="button" value="Add Value" onclick="AddValue()" />
</div>
<div class="wrap-side">
<h1>Formulua</h1>
<h2><input type="problem" id="formula" onkeydown="return checkInputProblem(event.key, this.id)" placeholder="e.g. !A*(B+C)" /></h2>
<div class="buttons">
<input class="button" type="button" id="calculate" value="Evaluate" onclick="Evaluate()" />
<input class="button" type="button" id="calculate" value="Step by step" onclick="StepByStep()" />
</div>
<div class="buttons">
<input class="button" type="button" id="calculate" value="Build a Truth Table" onclick="BuildTruthTable()" />
</div>
<div class="buttons">
<input class="button" type="button" id="calculate" value="Make PDNF" onclick="BuildPDNF()" />
<input class="button" type="button" id="calculate" value="Make PCNF" onclick="BuildPCNF()" />
</div>
<div class="wrap-result">
<div class="input-wrap">
<h1 class="text">Result </h1>
<div class="input"><input type="result" id="result" readonly/></div>
</div>
</div>
<h6 class="description">Define variables then write the formula you need to solve</h6>
<h6 class="operations">
<div class="operation">
<div class="operation-bg"> !</div>
<h6>Negation</h6>
</div>
<div class="operation">
<div class="operation-bg"> *</div>
<h6>Conjunction</h6>
</div>
<div class="operation">
<div class="operation-bg"> +</div>
<h6>Disjunction</h6>
</div>
<div class="operation">
<div class="operation-bg"> ></div>
<h6>Implication</h6>
</div>
<div class="operation">
<div class="operation-bg"> =</div>
<h6>Equivalence</h6>
</div>
</h6>
</div>
</div>
<div class="wrapper hide close" id="stepsNode">
<img src="../img/cross-close-icon.png" class="close-button" onclick="ToggleSteps(false)">
<div class="step-by-step" id="stepsWrapper">
<h1>Step by step
<a href="../Knowledgebase#boolean-algebra" title="Learn more about Algebra of 2-valued Boolean functions"><img src="../img/question-mark.png" class="question-mark-button"></a>
</h1>
<div class="input-wrap" id="input-wrap">
<h1 class="text">1.</h1>
<div class="input"><input type="result" id="step1" readonly/></div>
</div>
</div>
</div>
<div class="wrapper hide close" id="truthTableNode">
<img src="../img/cross-close-icon.png" class="close-button" onclick="ToggleTruthTable(false)">
<div class="step-by-step" id="truthTableWrapper">
<h1>Truth Table
<a href="../Knowledgebase#boolean-functions" title="Learn more about Boolean functions"><img src="../img/question-mark.png" class="question-mark-button"></a>
</h1>
<div class="input-wrap" id="input-wrap">
<div class="input"><input type="table-start" id="step1" readonly/></div>
</div>
<div class="input-wrap" id="input-wrap">
<div class="input"><input type="table-mid" id="step1" readonly/></div>
</div>
<div class="input-wrap" id="input-wrap">
<div class="input"><input type="table-end" id="step1" readonly/></div>
</div>
</div>
</div>
<div class="wrapper hide close" id="pdnfNode">
<img src="../img/cross-close-icon.png" class="close-button" onclick="TogglePDNF(false)">
<div class="step-by-step" id="pdnfWrapper">
<h1>Perfect Disjunctive Normal Form
<a href="../Knowledgebase#PDNF" title="Learn more about Perfect Disjunctive Normal Form"><img src="../img/question-mark.png" class="question-mark-button"></a>
</h1>
<div class="input-wrap" id="input-wrap">
<div class="input"><input type="result" id="step1" readonly/></div>
</div>
</div>
</div>
<div class="wrapper hide close" id="pcnfNode">
<img src="../img/cross-close-icon.png" class="close-button" onclick="TogglePCNF(false)">
<div class="step-by-step" id="pcnfWrapper">
<h1>Perfect Conjunctive Normal Form
<a href="../Knowledgebase#PCNF" title="Learn more about Perfect Conjunctive Normal Form"><img src="../img/question-mark.png" class="question-mark-button"></a>
</h1>
<div class="input-wrap" id="input-wrap">
<div class="input"><input type="result" id="step1" readonly/></div>
</div>
</div>
</div>
</div>
<!-- -----------------------------------JS---------------------------- -->
<script src="script.js"></script>
</body>
</html>