Skip to content

Commit

Permalink
Reformat solver enums (#362)
Browse files Browse the repository at this point in the history
Fixes inconsistent indentation (formatted with clang-format).
  • Loading branch information
CyanoKobalamyne authored Jan 24, 2025
1 parent 6e09065 commit 4bbaec2
Showing 1 changed file with 6 additions and 8 deletions.
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

0 comments on commit 4bbaec2

Please sign in to comment.