All Systems Operational
Intelligence-First Optimization

TO LEAD THE OCEAN
OF COMPLEXITY
YOU NEED AN ADMIRAL

Chart the shortest path through impossible problems. Solver racing, AI advisor, natural language builder — real-time convergence at any scale.

AI Advisor
Solver Race
NL Builder
Topology
Impact Explorer
Auto-Detect
Problem Types
0
Algorithms
0
Solver Racing
8x
Fastest Solve
<5ms
Uptime
99.9%
INTELLIGENCE AT EVERY LAYER
Not just another solver. Admiral understands your problem, picks the best algorithm, and shows you why it works.
Solver Racing
Launch multiple algorithms simultaneously. First to converge wins. Up to 8 solvers compete on your problem in parallel.
AI Advisor
Analyzes your problem structure — sparsity, coupling strength, variable domains — then recommends the optimal solver with confidence scores.
NL Builder
Describe your problem in plain English. Admiral converts it to the right formulation — QUBO, CQM, or MAX-SAT — automatically.
Topology Insight
Visualize the variable interaction graph. See clusters, bottlenecks, and community structure in real-time as the solver runs.
Impact Explorer
Flip any variable and see the energy change instantly. Understand which decisions matter most to your objective function.
Auto-Detect
Submit any JSON matrix. Admiral identifies the problem type, validates the structure, and routes to the right solver pipeline.
BUILT FOR RESEARCHERS AND ENGINEERS
No fragmented toolchains. No cluster setup. One API that handles everything from formulation to solution.
One API, 9 Problem Types
Submit QUBO, Ising, MAX-SAT, or any of 9 types through a single endpoint. No switching between tools or learning new interfaces.
8x Solver Racing
Race up to 8 solvers in parallel on every problem. The first to converge wins. No manual tuning needed — the best algorithm is selected automatically.
AI-Powered Analysis
The AI Advisor examines your problem structure — density, connectivity, coefficients — and recommends the optimal solver with confidence scores.
No Infrastructure Required
One pip install. One API call. Results in milliseconds. No clusters to manage, no containers to orchestrate, no hardware to provision.
PIP INSTALL. SOLVE. DONE.
The admiral-solver package wraps the entire platform into one clean Python API.
solve.py
# pip install admiral-solver
from admiral import Client

client = Client("adm_sk_...")

Q = [[-5, 2, 4],
     [0, -3, 1],
     [0, 0, -8]]

result = client.solve(
    problem_type="qubo",
    data={"Q": Q},
    strategy="race"
)

print(result.solution)    # [1, 0, 1]
print(result.energy)      # -13.0
response.json
{
  "job_id": "ADM-00847",
  "status": "completed",
  "solution": [1, 0, 1],
  "energy": -13.0,
  "solve_time_ms": 82,
  "solvers_raced": 8,
  "ai_confidence": 0.97,
  "convergence": {
    "iterations": 1240,
    "improvement_rate": 0.94
  }
}
client.solve()
Submit any of the 9 problem types. Auto-selects the best algorithm. Returns solution, energy, convergence data, and timing.
client.analyze()
Pre-solve structural analysis. Returns density, difficulty, recommended approach, and variable interaction insights.
client.race()
Launch up to 8 solvers in parallel. First to converge wins. Real-time progress callbacks and convergence traces.
NLBuilder
Describe problems in plain English. Admiral converts to the correct mathematical formulation automatically.
result.impact(i)
Flip any variable and see the energy change. Per-variable sensitivity map of your objective function.
result.topology()
Variable interaction graph. Adjacency data, community clusters, degree distribution, bottleneck identification.
REST API v2.0DOCS →
POST/v1/solveSubmit & race solvers
POST/v1/analyzeAI Advisor
POST/v1/formulateNL Builder
POST/v1/detectAuto-detect type
POST/v1/benchmarkRace all solvers
POST/v1/explainSolution explainer
GET/v1/jobs/{id}Get result
GET/v1/metricsPlatform metrics
UNIVERSAL SOLVER API
Every formulation, one unified interface. Learn how to formulate each type →
QUBO
min xᵀQx
ISING
min ∑hᵢsᵢ+∑Jᵢˇsᵢsˇ
HUBO
min ∑cₛ∏xᵢ
DQM
min ∑aᵢ(xᵢ)+∑bᵢˇ
CQM
min xᵀQx+cᵀx s.t. Ax≤b
MAX-SAT
max ∑wˇ·sat(Cˇ)
PBO
min ∑cˇ∏lᵢ
WCSP
min ∑f(x)
POTTS
min −∑Jδ(sᵢ,sˇ)
FROM RESEARCH TO PRODUCTION
Admiral handles optimization problems across industries — from finance to logistics to life sciences.
Portfolio Optimization
Minimize risk while maximizing returns. Formulate as QUBO or CQM and race solvers to find the optimal asset allocation.
Vehicle Routing
Optimize delivery routes across thousands of stops. Solve TSP and VRP variants with QUBO formulations at scale.
Drug Discovery
Molecular conformation search and protein folding subproblems. Map to Ising models and solve with Admiral's multi-replica optimizer.
Feature Selection
Find the optimal subset of features for ML models. Formulate as QUBO — minimize prediction error with a sparsity penalty.
Scheduling
Job-shop, nurse rostering, exam timetabling. Model constraints with CQM and let the solver handle the combinatorics.
Network Design
Optimize network topology, graph partitioning, and max-cut problems. Native support for Potts models and graph coloring.
READY TO SOLVE?
Start free with all 9 problem types and 27 algorithms. No credit card required. Pay with crypto (BTC, ETH, SOL) or ADM tokens.
$ pip install admiral-solver