MCPcopy Create free account
hub / github.com/cortex-js/compute-engine / Case

Interface Case

benchmarks/audit/solve.ts:40–47  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

38
39type Card = 'finite' | 'infinite' | 'empty';
40interface Case {
41 id: string;
42 cat: string;
43 title: string;
44 ce: { op: string; var: string; mathjson: any };
45 sympy: { expr: string; result: { status: string; roots: string[] } };
46 verify: { kind: string; cardinality: Card; roots: string[] };
47}
48type Verdict = 'correct' | 'partial' | 'wrong' | 'unsolved' | 'error';
49
50const cases: Case[] = JSON.parse(

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected