1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
|
###############################################################################
# Top contributors (to current version):
# Andrew Reynolds, Aina Niemetz, Gereon Kremer
#
# This file is part of the cvc5 project.
#
# Copyright (c) 2009-2025 by the authors listed in the file AUTHORS
# in the top-level source directory and their institutional affiliations.
# All rights reserved. See the file COPYING in the top-level source
# directory for licensing information.
# #############################################################################
#
# Unit tests for synth result API.
#
# Obtained by translating test/unit/api/synth_result_black.cpp
##
import pytest
import cvc5
from cvc5 import SynthResult
@pytest.fixture
def tm():
return cvc5.TermManager()
@pytest.fixture
def solver(tm):
return cvc5.Solver(tm)
def test_is_null(solver):
res_null = SynthResult()
assert res_null.isNull()
assert not res_null.hasSolution()
assert not res_null.hasNoSolution()
assert not res_null.isUnknown()
def test_equal(tm, solver):
solver.setOption("sygus", "true")
solver.synthFun("f", {}, tm.getBooleanSort())
tfalse = tm.mkFalse()
ttrue = tm.mkTrue()
solver.addSygusConstraint(ttrue)
res1 = solver.checkSynth()
solver.addSygusConstraint(tfalse)
res2 = solver.checkSynth()
assert res1 == res1
assert res1 != res2
assert res1 != SynthResult()
def test_has_solution(tm, solver):
solver.setOption("sygus", "true")
f = solver.synthFun("f", [], solver.getBooleanSort())
boolTerm = tm.mkBoolean(True)
solver.addSygusConstraint(boolTerm)
res = solver.checkSynth()
assert not res.isNull()
assert res.hasSolution()
assert not res.hasNoSolution()
assert not res.isUnknown()
assert str(res) == '(SOLUTION)'
def test_has_no_solution(solver):
res_null = SynthResult()
assert not res_null.hasNoSolution()
def test_has_is_unknown(tm, solver):
solver.setOption("sygus", "true")
f = solver.synthFun("f", [], solver.getBooleanSort())
boolTerm = tm.mkBoolean(False)
solver.addSygusConstraint(boolTerm)
res = solver.checkSynth()
assert not res.isNull()
assert not res.hasSolution()
assert res.hasNoSolution()
assert not res.isUnknown()
|