SMT-LIB
1 program
Added 2025-11-07T11:03:07Z
Model: x-ai/grok-4-fastTemp: 0.4
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 8518e4fca8 · authored 2025-11-07T12:03:07+01:00 · model x-ai/grok-4-fast
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Simple Integer Satisfiability Example
Provenance: commit 8518e4fca8 · authored 2025-11-07T12:03:07+01:00 · model x-ai/grok-4-fast · Temp 0.4
(set-logic QF_LIA)
(declare-fun x () Int)
(declare-fun y () Int)
(assert (and (> x 0) (< y 0)))
(assert (not (= x y)))
(check-sat)