/** * @file src/tableau/log.ts * @description Debug logging for tableau state * * Provides console output of the current tableau state including: * - Matrix dimensions * - Basic and non-basic variable indices * - Formatted matrix contents * * Primarily used during development and debugging. */ import type Tableau from "./tableau"; export declare function log(this: Tableau, message: unknown, force?: boolean): Tableau;