Master Equation Builder
Builds the synthesized HULYAS master equation for a given domain and operator set without executing the solver. Returns the full equation string and term breakdown.
| Endpoint | POST /api/zeq/master-equation |
| Auth | api-key |
| Rate limit | 60/min |
| Category | compute |
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
domain | string | No | Domain name. |
operators | array | No | Operator IDs. |
inputs | object | No | Named inputs for variable substitution. |
Returns
{ masterEquation, operators, domain, terms, ko42Applied }
Example
curl -sS -X POST \
-H "Authorization: Bearer zsm_..." \
-H "Content-Type: application/json" \
-d '{
"domain": "<domain>",
"operators": [],
"inputs": {}
}' \
"https://zeqsdk.com/api/zeq/master-equation"
This protocol is a named building block — one of the operations you
compose inside a state contract. Call it directly with
the request above, or invoke it from a contract that fires on your machine's
clock. Browse the whole library at GET /api/protocols; fetch this one at
GET /api/protocols/zeq-master-equation.