UNPKG

binary-decision-diagram

Version:

A library to create, minimize and optimize binary decision diagrams

7 lines (6 loc) 221 B
import type { TruthTable } from './types.js'; /** * fills each missing row of a table * with the given value */ export declare function fillTruthTable(truthTable: TruthTable, inputLength: number, value: number): void;