3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 17:15:31 +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

@ -69,7 +69,7 @@ static unsigned my_random() {
}
struct simple_column_namer:public column_namer
{
std::string get_column_name(unsigned j) const override {
std::string get_variable_name(unsigned j) const override {
return std::string("x") + T_to_string(j);
}
};