
Security News
Socket Releases Free Certified Patches for Critical vm2 Sandbox Escape
A critical vm2 sandbox escape can allow untrusted JavaScript to break isolation and execute commands on the host Node.js process.
Implementation of Espresso-II method for heuristic minimization of single output boolean functions
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].
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);
FAQs
Implementation of Espresso-II method for heuristic minimization of single output boolean functions
We found that yebool demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
A critical vm2 sandbox escape can allow untrusted JavaScript to break isolation and execute commands on the host Node.js process.

Research
Five malicious NuGet packages impersonate Chinese .NET libraries to deploy a stealer targeting browser credentials, crypto wallets, SSH keys, and local files.

Security News
pnpm 11 turns on a 1-day Minimum Release Age and blocks exotic subdeps by default, adding safeguards against fast-moving supply chain attacks.