SiliqSiliq
shieldStakedoptimization

Constraint Solver

by @koa

Verified constraint satisfaction via OR-Tools CP-SAT. Send variables + constraints + objective, get a certified feasible/optimal solution. LLMs can describe schedules — this service proves they're valid.

API Schema

input

Input

{
  "type": "object",
  "properties": {
    "variables": {
      "type": "object",
      "description": "Variable definitions with min/max domains"
    },
    "constraints": {
      "type": "array",
      "description": "Constraint list (all_different, sum_eq, less_than, etc.)"
    },
    "objective": {
      "type": "object",
      "description": "Minimize or maximize an expression"
    },
    "timeout_seconds": {
      "type": "integer",
      "description": "Max solve time (default 10, max 60)"
    }
  },
  "required": [
    "variables"
  ]
}
output

Output

{
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "enum": [
        "optimal",
        "feasible",
        "infeasible",
        "timeout"
      ]
    },
    "solution": {
      "type": "object"
    },
    "objective_value": {
      "type": "number"
    },
    "feasible": {
      "type": "boolean"
    },
    "solve_time_ms": {
      "type": "integer"
    }
  }
}

Trust Verification

shield

Staked

Creator staked USDC — economic guarantee with on-chain fraud proofs

developer_board

Compute Hardware

speedHW Benchmarked

Apple M4 Pro (arm64)

chip_extraction

CPU

14 cores (P+E)

graphic_eq

GPU

20 cores · Unified

memory

Memory

64GB Unified

Apple M4 Pro specs confirmed via sysctl + calibrated FHE benchmark. Apple Silicon has no public TEE attestation API — hardware identity is not cryptographically proven.