Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support multiple solver backends #142

Draft
wants to merge 6 commits into
base: dev-next
Choose a base branch
from

Conversation

Boyan-MILANOV
Copy link
Collaborator

See #141

@Boyan-MILANOV Boyan-MILANOV added the enhancement New feature or request label Aug 26, 2022
@Boyan-MILANOV Boyan-MILANOV self-assigned this Aug 26, 2022
@Boyan-MILANOV Boyan-MILANOV changed the base branch from master to dev-next August 26, 2022 09:19
@@ -130,6 +131,12 @@ if(maat_USE_Z3)
target_compile_definitions(maat_maat PUBLIC MAAT_Z3_BACKEND=1 MAAT_HAS_SOLVER_BACKEND=1)
endif()

if(maat_USE_BOOLECTOR)
find_package(Boolector)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Probably this?

Suggested change
find_package(Boolector)
find_package(Boolector REQUIRED)

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Agree :)

@@ -81,6 +81,12 @@ if(maat_USE_Z3)
target_compile_definitions(maat_python PRIVATE MAAT_Z3_BACKEND=1 MAAT_HAS_SOLVER_BACKEND=1)
endif()

if(maat_USE_BOOLECTOR)
find_package(Boolector)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Probably also here?

Suggested change
find_package(Boolector)
find_package(Boolector REQUIRED)

@Boyan-MILANOV Boyan-MILANOV linked an issue Sep 21, 2022 that may be closed by this pull request
5 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Support SMT solvers other than z3
2 participants