UNPKG

ts-hashlife

Version:

Efficient TypeScript implementation of HashLife, an optimized algorithm for simulating Conway's Game of Life with memoization and quadtree-based compression.

3 lines (2 loc) 166 B
import { LifeUniverse } from "./life-universe"; export declare function load_macrocell(universe: LifeUniverse, text: string): import("./formats").Result | undefined;