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

Format solver enums #362

Merged
merged 1 commit into from
Jan 24, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 6 additions & 8 deletions smt/available_solvers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,18 +52,16 @@ namespace pono {

// list of regular (non-interpolator) solver enums
const std::vector<SolverEnum> solver_enums({
BZLA, CVC5,

BZLA,
CVC5,
#if WITH_BOOLECTOR
BTOR,
BTOR,
#endif

#if WITH_MSAT
MSAT,
MSAT,
#endif

#if WITH_YICES2
YICES2,
YICES2,
#endif
});

Expand Down Expand Up @@ -252,7 +250,7 @@ SmtSolver create_interpolating_solver_for(SolverEnum se, Engine e)

const std::vector<SolverEnum> itp_enums({
#if WITH_MSAT
MSAT_INTERPOLATOR
MSAT_INTERPOLATOR
#endif
});

Expand Down
Loading