diff --git a/src/pages/truth-table.tsx b/src/pages/truth-table.tsx index 5d596b0..5f94789 100644 --- a/src/pages/truth-table.tsx +++ b/src/pages/truth-table.tsx @@ -298,10 +298,7 @@ hideIntermediate=${hideIntermediates()}`) /> - 0} - keyed - > + 0} keyed> @@ -369,7 +366,7 @@ const ShowMeHow: Component = ({ fetchResult }) => ( - {orderOperationRow()} + {operationRow()}
@@ -395,7 +392,7 @@ const HowTo: Component = () => ( ) -const orderOperationRow = () => (operation: OrderOfOperation, index: Accessor) => ( +const operationRow = () => (operation: Operation, index: Accessor) => ( {index() + 1}: diff --git a/src/types/types.d.ts b/src/types/types.d.ts index 1fa8974..f96a460 100644 --- a/src/types/types.d.ts +++ b/src/types/types.d.ts @@ -55,19 +55,28 @@ type Expression = AtomicExpression | NotExpression | BinaryExpression type BinaryOperator = "AND" | "OR" | "IMPLICATION" +type Law = + | "ELIMINATION_OF_IMPLICATION" + | "DE_MORGANS_LAWS" + | "ABSORPTION_LAW" + | "ASSOCIATIVE_LAW" + | "DISTRIBUTION_LAW" + | "DOUBLE_NEGATION_ELIMINATION" + | "COMMUTATIVE_LAW" + type TruthMatrix = boolean[][] -type OrderOfOperation = { +type Operation = { before: string after: string - law: string + law: Law } type FetchResult = { - version: string | null + version: string before: string after: string - orderOfOperations: OrderOfOperation[] + operations: Operation[] expression: Expression | null truthTable?: { header: string[]