🚀 Big News:Socket Has Acquired Secure Annex.Learn More →
Socket
Book a DemoSign in
Socket

yebool

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

yebool

Implementation of Espresso-II method for heuristic minimization of single output boolean functions

unpublished
latest
Source
npmnpm
Version
1.0.2
Version published
Maintainers
1
Created
Source

yebool

This is an implementation of Espresso-II method for heuristic minimization of single-output boolean functions. Multiple-output boolean functions are not supported.

Also included are the following utility functions:

  • sat: Test boolean satisfiability for CNF formulas. The implementation is inspired by the tautology algorithm in Espresso-II. It implements unit propagation on top of that, but none of the other optimizations found in modern SAT solvers. Performance is reasonable for smaller input sizes.

  • allSat: Finds all satisfying assignments for the given CNF formula.

  • tautology: Given a DNF formula, determine whether or not it's a tautology. The algorithm is identical to sat above and therefore a modern SAT solver can be used to answer the tautology question for larger input sizes much more efficiently.

  • complement: Computes the complement of the given DNF formula.

A formula is represented as an array of arrays of numbers. Literals are represented as unsigned numbers where the least significant bit denotes the polarity of the literal, and the remaining bits are the literal number left-shifted by 1. For example, the clause -1 2 -3 in DIMACS format would be [2, 5, 6].

Quick start

import { espresso } from "yebool";

// A'BC'D' + AB'C'D' + AB'CD' + AB'CD + ABC'D' + ABCD
const original = [
  [ 2, 5, 8, 16 ],
  [ 3, 4, 8, 16 ],
  [ 3, 4, 9, 16 ],
  [ 3, 4, 9, 17 ],
  [ 3, 5, 8, 16 ],
  [ 3, 5, 9, 17 ]
];

// The don't-care terms: AB'C'D and ABCD'
const dcSet = [
  [ 3, 4, 8, 17 ],
  [ 3, 5, 9, 16 ]
];

const minimized = espresso(original, dcSet);

// Should print: [ [ 5, 8, 16 ], [ 3, 9 ], [ 3, 16 ] ]
// which is the representation of BC'D' + AC + AD'
// which is a minimized form of the original formula
console.log(minimized);

Keywords

logic

FAQs

Package last updated on 15 Aug 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts