UNPKG

binary-decision-diagram

Version:

A library to create, minimize and optimize binary decision diagrams

8 lines (7 loc) 248 B
import { AbstractNode } from './abstract-node.js'; /** * find an simliar node in a list of nodes * which is not exactly the same node * @hotpath */ export declare function findSimilarNode<T extends AbstractNode>(own: T, others: T[]): T | null;