Skip to content

Latest commit

 

History

History
42 lines (29 loc) · 833 Bytes

File metadata and controls

42 lines (29 loc) · 833 Bytes

infinityLogicBench (iLB) - The Omega Build

iLB is a production-grade, unbounded procedural benchmark for AI logic evaluation.

🇨🇳 中文文档 (Chinese Documentation)

Core Philosophy

  • Unbounded Difficulty: No max score.
  • Language Drift Metrics: Does logic hold across languages?
  • Isomorphic Consistency: Truth Index (Ti).

Installation

pip install -e .

Usage

TUI

ilb

Python API

from ilb import api

# Generate a task
task = api.generate_task(engine="RecursiveFunction", difficulty=5)
print(task.prompt)

Architecture

  • Core: Schema definitions.
  • Engines: 30+ logic engines across Math, Code, Causal, and Meta domains.
  • Ice: Rendering layer.
  • Runner: Execution logic.
  • UI: Textual-based TUI.