예제 #1
0
#
# This file is part of pySMT.
#
#   Copyright 2014 Andrea Micheli and Marco Gario
#
#   Licensed under the Apache License, Version 2.0 (the "License");
#   you may not use this file except in compliance with the License.
#   You may obtain a copy of the License at
#
#       http://www.apache.org/licenses/LICENSE-2.0
#
#   Unless required by applicable law or agreed to in writing, software
#   distributed under the License is distributed on an "AS IS" BASIS,
#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#   See the License for the specific language governing permissions and
#   limitations under the License.
#
import pytest

from pysmt.logics import QF_LRA
from pysmt.test.smtlib.parser_utils import execute_script_fname, smtlib_tests


@pytest.mark.parametrize("smtfile, logic, expected_result",
                         smtlib_tests(lambda x: x == QF_LRA))
def test_qf_lra(smtfile, logic, expected_result):
    execute_script_fname(smtfile, logic, expected_result)
예제 #2
0
#
# This file is part of pySMT.
#
#   Copyright 2014 Andrea Micheli and Marco Gario
#
#   Licensed under the Apache License, Version 2.0 (the "License");
#   you may not use this file except in compliance with the License.
#   You may obtain a copy of the License at
#
#       http://www.apache.org/licenses/LICENSE-2.0
#
#   Unless required by applicable law or agreed to in writing, software
#   distributed under the License is distributed on an "AS IS" BASIS,
#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#   See the License for the specific language governing permissions and
#   limitations under the License.
#
import pytest

from pysmt.logics import QF_UFLIRA
from pysmt.test.smtlib.parser_utils import execute_script_fname, smtlib_tests


@pytest.mark.parametrize("smtfile, logic, expected_result",
                         smtlib_tests(lambda x: x == QF_UFLIRA))
def test_qf_lira(smtfile, logic, expected_result):
    execute_script_fname(smtfile, logic, expected_result)
예제 #3
0
#
# This file is part of pySMT.
#
#   Copyright 2014 Andrea Micheli and Marco Gario
#
#   Licensed under the Apache License, Version 2.0 (the "License");
#   you may not use this file except in compliance with the License.
#   You may obtain a copy of the License at
#
#       http://www.apache.org/licenses/LICENSE-2.0
#
#   Unless required by applicable law or agreed to in writing, software
#   distributed under the License is distributed on an "AS IS" BASIS,
#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#   See the License for the specific language governing permissions and
#   limitations under the License.
#
import pytest

from pysmt.logics import QF_UF
from pysmt.test.smtlib.parser_utils import execute_script_fname, smtlib_tests


@pytest.mark.parametrize("smtfile, logic, expected_result",
                         smtlib_tests(lambda x: x == QF_UF))
def test_qf_uf(smtfile, logic, expected_result):
    execute_script_fname(smtfile, logic, expected_result)
예제 #4
0
#
# This file is part of pySMT.
#
#   Copyright 2014 Andrea Micheli and Marco Gario
#
#   Licensed under the Apache License, Version 2.0 (the "License");
#   you may not use this file except in compliance with the License.
#   You may obtain a copy of the License at
#
#       http://www.apache.org/licenses/LICENSE-2.0
#
#   Unless required by applicable law or agreed to in writing, software
#   distributed under the License is distributed on an "AS IS" BASIS,
#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#   See the License for the specific language governing permissions and
#   limitations under the License.
#
import pytest

from pysmt.logics import QF_NIA
from pysmt.test.smtlib.parser_utils import execute_script_fname, smtlib_tests


@pytest.mark.parametrize("smtfile, logic, expected_result",
                         smtlib_tests(lambda x: x == QF_NIA))
def test_qf_nia(smtfile, logic, expected_result):
    execute_script_fname(smtfile, logic, expected_result)
예제 #5
0
#
# This file is part of pySMT.
#
#   Copyright 2014 Andrea Micheli and Marco Gario
#
#   Licensed under the Apache License, Version 2.0 (the "License");
#   you may not use this file except in compliance with the License.
#   You may obtain a copy of the License at
#
#       http://www.apache.org/licenses/LICENSE-2.0
#
#   Unless required by applicable law or agreed to in writing, software
#   distributed under the License is distributed on an "AS IS" BASIS,
#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#   See the License for the specific language governing permissions and
#   limitations under the License.
#
import pytest

from pysmt.test.smtlib.parser_utils import execute_script_fname, smtlib_tests, SMTLIB_TEST_FILES, SMTLIB_DIR


@pytest.mark.parametrize("smtfile, logic, expected_result",
                         smtlib_tests(lambda x: x.theory.arrays))
def test_qf_arrays(smtfile, logic, expected_result):
    execute_script_fname(smtfile, logic, expected_result)
예제 #6
0
#
# This file is part of pySMT.
#
#   Copyright 2014 Andrea Micheli and Marco Gario
#
#   Licensed under the Apache License, Version 2.0 (the "License");
#   you may not use this file except in compliance with the License.
#   You may obtain a copy of the License at
#
#       http://www.apache.org/licenses/LICENSE-2.0
#
#   Unless required by applicable law or agreed to in writing, software
#   distributed under the License is distributed on an "AS IS" BASIS,
#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#   See the License for the specific language governing permissions and
#   limitations under the License.
#
import pytest

from pysmt.logics import LRA
from pysmt.test.smtlib.parser_utils import execute_script_fname, smtlib_tests

@pytest.mark.parametrize("smtfile, logic, expected_result", smtlib_tests(lambda x: x == LRA))
def test_lra(smtfile, logic, expected_result):
    execute_script_fname(smtfile, logic, expected_result)