Git Product home page Git Product logo

espresso-iisojs's Introduction

Espresso-IISOJS

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 (zero-based) left-shifted by 1. For example, the clause -1 2 -3 in DIMACS format becomes [0, 3, 4].

Quick start

import { espresso } from "espresso-iisojs";

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

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

const minimized = espresso(original, dcSet);

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

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.