Navokoj (नवखोज) means "New Search" in Sanskrit. It's a fast, GPU-based SAT solver that uses "Periodic Noise Injection" to help escape local minima and represents a new way to think about the Riemann zeta function.
"The same mathematics that describes spontaneous symmetry breaking in quantum field theory is letting navokoj solve large scale max-SAT scheduling problem in 4.7 seconds with 97.2% clause satisfaction."
Performance that defies classical computational complexity
| Concept | Thermo | OR | Navokoj |
|---|---|---|---|
| Energy landscape | ✓ | ✗ | ✓ |
| Constraints | ✗ | ✓ | ✓ |
| Annealing | ✓ | ✗ | ✓ |
| Objective tradeoffs | ✗ | ✓ | ✓ |
| Phase transition at β=1 | ✓ | ✗ | ✓ |
| Scheduling / SAT / routing | ✗ | ✓ | ✓ |
| Gradient-based continuous relaxation | ✓ | ✗ | ✓ |
Navokoj uniquely combines thermodynamic energy landscapes with operations research constraint handling
Problem: 250 people, 4 time slots, 2,275 constraints with guaranteed conflicts
Traditional: Would require enterprise software and hours of computation
Fits Under Plan: $9/mo Mini Lab (250 variables × 4 slots = 1,000 variables total)
Problem: 500 crew members with 4,601 constraints
Traditional: $50K+ enterprise software and hours of computation
Fits Under Plan: $99/mo Launch Pad (500 crew members require higher variable limit)
Pure gradient descent optimized for millisecond latency. Perfect for UI constraints and real-time logic.
Chaotic Lotus architecture that escapes local optima. Solves massive industrial instances (N=100k).
Connect Claude or GPT-4 directly. No glue code. Agents can natively solve scheduling & routing.
Know if your problem is solvable before burning compute. Spectral diagnostics catch structural defects in milliseconds.
| Engine | Algorithm | Quality | Performance |
|---|---|---|---|
| Mini | Gradient descent (Adam) | Good | Fastest |
| Pro | Chaotic annealing | Excellent | Fast |
| DeepThink | Ensemble + iterative refinement | Best | Slower |
| Navokoj-X | XOR-specialized (GF(2)) | More often than not 100% | Fast |
Integrate Navokoj directly into your stack. Pre-flight diagnostics + adaptive solving.
Pre-flight analysis to detect structural unsolvability BEFORE wasting compute. Get UNSAT probability and business recommendations in milliseconds.
/v1/diagnose
{
"num_vars": 100,
"clauses": [
[1, 2, 3],
[-1, 4, 5],
...
]
}
{
"unsat_probability": 0,
"diagnosis": "parametric",
"recommendation": "Problem is solvable. Use Mini Engine for fast results."
}
Submit raw CNF clauses OR boolean expressions. Supports priority clauses and adaptive solver selection.
/v1/solve
Enable DeepThink (ensemble + iterative refinement) for higher quality solutions:
"engine": "mini-fast" to disable)"engine": "mini-deepthink" or "engine": "pro-deepthink"-deepthink suffix{
"num_vars": 3,
"constraints": [
{"clause": {"literals": [1, 2, 3], "priority": "critical"}},
{"clause": {"literals": [-1, 2], "priority": "normal"}}
],
"engine": "pro"
}
{
"expression": "(A | B) & (~A | C)",
"engine": "mini"
}
{
"num_vars": 100,
"constraints": [...],
"engine": "pro-deepthink"
}
{
"status": "success",
"satisfaction_rate": 1.0,
"solution": {"A": true, "B": false, "C": true},
"solve_time_seconds": 0.023
}
Send natural language queries. The system parses them into SAT, solves them, and returns a natural language explanation.
$NAVOKOJ_SUBSCRIPTION_KEY
Connect Navokoj directly to Claude Desktop, ChatGPT, or any LLM agent. Enable AI to solve complex constraints natively through natural language.
Add to claude_desktop_config.json:
User asks Claude: "Schedule 3 employees across 2 shifts where each employee works exactly one shift"
Claude responds: "Here's your optimal schedule: Employee 1 works Shift 1, Employee 2 works Shift 2..."
Simple API key authentication for production use.
Authorization: Bearer your-api-key
We're currently in beta. Request access for your production use case.
Mini Lab: CPU instance in Hetzner
Launch Pad: L4 GPU secure instance in RunPod
Lotus Fleet: Secure H100 from RunPod
API: Dedicated Hetzner servers for traffic handling
SLA: 99.9% uptime, 24/7 monitoring
Empirical results from production-scale benchmarks
| Empirical Complexity | O(N^1.01) |
| GPU Throughput | 24M variable updates/sec |
| Memory Scaling | 1M variables in 24GB VRAM |
| CPU vs GPU (N>200k) | 10× performance improvement |
| Random 3-SAT (α=4.26) | 97.7% satisfaction |
| Logistics (N=435k) | 97.14% satisfaction |
| Dense Graph MaxCut | 30% improvement over greedy |
| Hard Sudoku Instances | 99.2% satisfaction |
| XOR-SAT Parity | 100% constraint retention |
| Problem Domain | Scale | Performance | Application |
|---|---|---|---|
| Traveling Salesman | 120 cities | Valid tour in 7.57s | Real-time logistics routing |
| Supply Chain | 435,000 variables | 97.14% satisfaction | Multi-depot optimization |
| Random 3-SAT | 1,000,000 variables | 92.16% in 83.64s | Circuit verification, planning |
| Graph Partitioning | Dense graphs | 30% better than greedy | Network clustering, VLSI design |
Traditional exact solvers fail on problems of this scale. Navokoj provides high-quality approximate solutions in production time constraints, enabling real-world deployment of combinatorial optimization at scale.
| Scenario | Scale | Satisfaction | Wall Time | Notes |
|---|---|---|---|---|
| Random 3-SAT | 1,000,000 vars / 4.26M clauses | 92.15% | 171.5s | Chaotic Lotus dynamics |
| Supply Chain | 435,000 vars / 1.305M clauses | 97.18% | 67.7s | Multi-depot optimization |
| TSP Routing | 120 cities | 100% hard constraints | 23.8s | Valid tour via SAT encoding |
Runtime varies by hardware. NVIDIA L4/A100 GPUs typically deliver 2–3× faster wall times with the same satisfaction rates.
| Problem Type | Scale | Result | Notes |
|---|---|---|---|
| Standard 3-SAT (Golden Ratio) | 50 vars / 150 clauses | 100% correct | Ensemble refinement strategy |
| AI Escargot Sudoku | 729 vars / 11,768 clauses | 99.2% satisfaction | Hardest known Sudoku puzzle |
Perfect solutions achieved on standard benchmarks. Near-optimal results on notoriously difficult constraint problems.
| Problem Size | Variables | Clauses | Satisfaction | Solve Time |
|---|---|---|---|---|
| Small | 8 | 47 | 95.7% | 0.191s |
| Medium | 16 | 96 | 100.0% | 0.079s |
| Large | 32 | 196 | 100.0% | 0.107s |
| Very Large | 64 | 396 | 100.0% | 0.169s |
Average Performance
98.9% satisfaction across all test sizes | 0.137s average solve time | Scales efficiently from 8 to 64 variables with consistent high-quality results
Stop burning GPU hours on impossible problems. DEFEKT analyzes your constraints in milliseconds and tells you if they're structurally solvable—before you waste time and budget.
| Problem Type | DEFEKT Result | Business Action |
|---|---|---|
| Tautologies (trivial) | 0% UNSAT – Parametric | Proceed with Mini Engine (fast) |
| Horn Clauses | 0% UNSAT – Parametric | Solvable in polynomial time |
| Critical 3-SAT (α=4.26) | 20% UNSAT – Borderline | Deploy Chaotic Lotus dynamics |
| Dense (α=10.0) | 40% UNSAT – Borderline | Relax constraints or use ensemble |
Technical clarifications on the paper
Physics is inspiration. Engineering is implementation.
Both are mathematically sound. Neither invalidates the other.
From lone builders to full Chaotic Lotus orchestration.
For students, researchers & experimentation.
Ship internal tools with Mini + Pro headroom.
Full Chaotic Lotus orchestration & solver co-design.
Need procurement paperwork or a deeper ROI analysis? Email us for a custom review.
🎓 Student Research Program
Are you an undergraduate student looking to test our API for research or academic projects? Use the Get Access button in the Developer API section and mention your academic institution. We provide free API access for qualified student research projects.
No Free Tier
NP-hard problem solving is computationally intensive by nature. Every solve requires significant GPU resources, so we don't offer a free tier. Our pricing reflects the actual compute costs of solving large-scale optimization problems.
⚠️ Experimental Product: Currently this is an experimental product. If you need SLA guarantees, VPC Peering, or On-Premise Air-Gap deployment, please wait until we reach beta.
Need to handle 500k+ variables?
Contact us for custom enterprise solutions with unlimited scaling capabilities.