+ //Display the truth table in the interface
+ ToggleTruthTable(true);
+
+ let truthTableWrapper = document.querySelector('#truthTableWrapper');
+
+ truthTableWrapper.insertAdjacentHTML('beforeend', `
`);
-
- let type = 'table-start';
- for (let r = 0; r < matrix.length; r++) {
-
- if (r == matrix.length - 1) {
- type = 'table-end';
- } else if (type != 0) {
- type = 'table-mid';
- }
+ let type = 'table-start';
- let result = matrix[r].pop();
-
- truthTableWrapper.insertAdjacentHTML('beforeend', `
+ for (let r = 0; r < matrix.length; r++) {
+
+ if (r == matrix.length - 1) {
+ type = 'table-end';
+ } else if (type != 0) {
+ type = 'table-mid';
+ }
+
+ let result = matrix[r].pop();
+
+ truthTableWrapper.insertAdjacentHTML('beforeend', `
`);
- }
+ }
- truthTableWrapper.scrollIntoView({behavior:'smooth', block: 'center'});
+ truthTableWrapper.scrollIntoView({ behavior: 'smooth', block: 'center' });
}
//#endregion
@@ -606,14 +608,14 @@ function GeneratePDNF() {
for (let r = 0; r < matrix.length; r++) {
if (matrix[r][matrix[r].length - 1] == 1) {
-
+
pdnf += mintermCount != 0 ? '+(' : '(';
for (let c = 0; c < matrix[r].length - 1; c++) {
pdnf += matrix[r][c] == 0 ? '!' + header[c] : header[c];
pdnf += c != matrix[r].length - 2 ? '*' : '';
}
-
+
pdnf += ')';
mintermCount++;
}
@@ -627,13 +629,13 @@ function DisplayPDNF(pdnf) {
TogglePDNF(true);
let Wrapper = document.querySelector('#pdnfWrapper');
-
+
Wrapper.insertAdjacentHTML('beforeend', `
`);
- Wrapper.scrollIntoView({behavior:'smooth', block: 'center'});
+ Wrapper.scrollIntoView({ behavior: 'smooth', block: 'center' });
}
@@ -674,13 +676,13 @@ function DisplayPCNF(pcnf) {
TogglePCNF(true);
let Wrapper = document.querySelector('#pcnfWrapper');
-
+
Wrapper.insertAdjacentHTML('beforeend', `
`);
- Wrapper.scrollIntoView({behavior:'smooth', block: 'center'});
+ Wrapper.scrollIntoView({ behavior: 'smooth', block: 'center' });
}
//#endregion
@@ -690,7 +692,7 @@ function ToggleSteps(show) {
let Node = document.querySelector('#stepsNode');
let Wrapper = document.querySelector('#stepsWrapper');
-
+
if (show) {
Node.classList.remove('hide');
Node.classList.remove('close');
@@ -700,7 +702,7 @@ function ToggleSteps(show) {
} else {
Node.classList.add('close');
setTimeout(() => Node.classList.add('hide'), 600);
- document.body.scrollIntoView({behavior:'smooth', block: 'start'});
+ document.body.scrollIntoView({ behavior: 'smooth', block: 'start' });
}
}
@@ -708,7 +710,7 @@ function ToggleTruthTable(show) {
let Node = document.querySelector('#truthTableNode');
let Wrapper = document.querySelector('#truthTableWrapper');
-
+
if (show) {
Node.classList.remove('hide');
Node.classList.remove('close');
@@ -718,7 +720,7 @@ function ToggleTruthTable(show) {
} else {
Node.classList.add('close');
setTimeout(() => Node.classList.add('hide'), 600);
- document.body.scrollIntoView({behavior:'smooth', block: 'start'});
+ document.body.scrollIntoView({ behavior: 'smooth', block: 'start' });
}
}
@@ -726,7 +728,7 @@ function TogglePDNF(show) {
let Node = document.querySelector('#pdnfNode');
let Wrapper = document.querySelector('#pdnfWrapper');
-
+
if (show) {
Node.classList.remove('hide');
Node.classList.remove('close');
@@ -736,7 +738,7 @@ function TogglePDNF(show) {
} else {
Node.classList.add('close');
setTimeout(() => Node.classList.add('hide'), 600);
- document.body.scrollIntoView({behavior:'smooth', block: 'start'});
+ document.body.scrollIntoView({ behavior: 'smooth', block: 'start' });
}
}
@@ -744,7 +746,7 @@ function TogglePCNF(show) {
let Node = document.querySelector('#pcnfNode');
let Wrapper = document.querySelector('#pcnfWrapper');
-
+
if (show) {
Node.classList.remove('hide');
Node.classList.remove('close');
@@ -754,7 +756,7 @@ function TogglePCNF(show) {
} else {
Node.classList.add('close');
setTimeout(() => Node.classList.add('hide'), 600);
- document.body.scrollIntoView({behavior:'smooth', block: 'start'});
+ document.body.scrollIntoView({ behavior: 'smooth', block: 'start' });
}
}
@@ -787,10 +789,10 @@ function GetValueFromIndex(valueIndex) {
for (let i = 0; i < userValues.length; i++) {
const element = userValues[i];
-
+
if (element[0] == valueIndex) {
return element[1];
- }
+ }
}
}
@@ -810,25 +812,41 @@ function Error(errMsg) {
const symbols = ['0', '1'];
const specialSymbols = ['Backspace', 'ArrowLeft', 'ArrowRight', 'Delete'];
-function checkInputValue(key, value) {
+function checkInputValue(key, value, id) {
if (value.length < 1 && symbols.indexOf(key) !== -1) {
return true;
} else if (value.length == 1 && specialSymbols.indexOf(key) !== -1) {
return true;
- }
- else {
+ } else {
+ function backBg() { document.getElementById(id).style.backgroundColor = 'rgba(255, 255, 255, 0)' }
+ document.getElementById(id).style.backgroundColor = 'rgba(235, 52, 116, 0.7)';
+ document.getElementById(id).style.transition = '0.2s';
+ setTimeout(backBg, 600);
return false;
}
}
-const symbols2 = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K',
- 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V',
- 'W', 'X', 'Y', 'Z', 'Backspace', 'ArrowLeft', 'ArrowRight', 'Delete',
- '>', '=', '+', '*', '!', '(', ')'
-];
-function checkInputProblem(key) {
- return (symbols2.indexOf(key) != -1) ? true : false;
+function checkInputProblem(key, id) {
+ if (symbols2.indexOf(key) != -1) {
+ return true;
+ } else {
+ function backBg() { document.getElementById(id).style.backgroundColor = 'rgba(255, 255, 255, 0)' }
+ document.getElementById(id).style.backgroundColor = 'rgba(235, 52, 116, 0.7)';
+ document.getElementById(id).style.transition = '0.2s';
+ setTimeout(backBg, 600);
+ return false;
+ }
}
+const alphabet = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K',
+ 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V',
+ 'W', 'X', 'Y', 'Z'
+];
+
+let symbols2 = ['A', 'B', 'Backspace', 'ArrowLeft', 'ArrowRight', 'Delete', 'Shift',
+ '-', '+', '/', '!', '(', ')'
+];
+
+
//#endregion
\ No newline at end of file
diff --git a/Set-Algebra/index.html b/Set-Algebra/index.html
index 9dd5abf..5910847 100644
--- a/Set-Algebra/index.html
+++ b/Set-Algebra/index.html
@@ -83,6 +83,7 @@