Problab-powered narrative

Zintix builds slot math that ships.

A production-minded math execution stack where the same engine runs both large-scale simulation and real backend execution. One source of truth—consistent behavior from dev to prod.

If it runs in simulation, it runs the same way in production.

CLI-style workflow

engine-first · deterministic · production-minded
zintix@lab:~/problab
$ make run game=0 worker=4 rounds=25000000

[WORKERS:4] [GAME:demo_normal] [PLAYMODE:0] [SPINS:100,000,000]
used: 5.24 seconds
sps : 19,073,129 spins/sec
+--------------------------------+
|          demo_normal           |
+--------------+-----------------+
| Game Name    | demo_normal     |
| Game ID      | 0               |
| Total Rounds | 100,000,000     |
| Total RTP    | 95.56 %         |
| RTP 95% CI   | [95.42%,95.69%] |
| Total Bet    | 4,000,000,000   |
| Total Win    | 3,822,201,660   |
| Base Win     | 2,439,779,100   |
| Free Win     | 1,382,422,560   |
| NoWin Rounds | 71,034,259      |
| Trigger      | 835,933         |
| STD          | 6.797           |
| CV           | 7.113           |
+--------------+-----------------+

# Bench (real run, reproducible)
# Hardware : MacBook Air (M3)
# OS       : macOS
# Go       : go1.25.2
# Problab  : 
# Command  : make run game=0 worker=4 rounds=25000000

Result:
  - Total spins      : 100,000,000
  - Elapsed          : 5.24s
  - Throughput (SPS) : 19,073,129 spins/sec

# Notes: Deterministic seed + production execution path.

$ curl -s http://localhost:5808/v1/spin | jq .
{
  "game": "demo_normal",
  "bet": 200,
  "win": 0,
  "screen": "...",
  "seed": 2305843009213693951,
  ...
}