3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-28 03:15:50 +00:00

going over the binary factor for basic lemmas

Signed-off-by: Lev <levnach@hotmail.com>
This commit is contained in:
Lev 2018-09-21 14:26:08 -07:00 committed by Lev Nachmanson
parent 318b505a2e
commit 5344dedf42
10 changed files with 170 additions and 141 deletions

View file

@ -28,7 +28,7 @@ template <typename T, typename X> column_info<T> * lp_solver<T, X>::get_or_creat
}
template <typename T, typename X>
std::string lp_solver<T, X>::get_column_name(unsigned j) const { // j here is the core solver index
std::string lp_solver<T, X>::get_variable_name(unsigned j) const { // j here is the core solver index
auto it = this->m_core_solver_columns_to_external_columns.find(j);
if (it == this->m_core_solver_columns_to_external_columns.end())
return std::string("x")+T_to_string(j);