Skip to content

Commit 6585594

Browse files
committed
Better version printing
1 parent f9634a3 commit 6585594

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/main.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,6 @@ string print_version()
100100
{
101101
std::stringstream ss;
102102
ss << "c o GANAK SHA revision " << GANAK::get_version_sha1() << endl;
103-
ss << "c o GANAK compilation env " << GANAK::get_compilation_env() << endl;
104103
#ifdef __GNUC__
105104
ss << "c o GANAK compiled with gcc version " << __VERSION__ << endl;
106105
#else
@@ -109,8 +108,11 @@ string print_version()
109108
ss << "c o CMS revision: " << CMSat::SATSolver::get_text_version_info() << endl;
110109
ss << "c o Arjun SHA revision: " << ArjunNS::Arjun ::get_version_info() << endl;
111110
ss << "c o Arjun SBVA SHA revision: " << ArjunNS::Arjun::get_sbva_version_info() << endl;
111+
ss << "c o GANAK compilation env " << GANAK::get_compilation_env() << endl;
112112
ss << "c o Using Graph library by Tuukka Korhonen" << endl;
113113
ss << "c o Using Flowcutter by Ben Strasser" << endl;
114+
ss << ArjunNS::Arjun::get_thanks_info("c o ") << endl;
115+
ss << CMSat::SATSolver::get_thanks_info("c o ") << endl;
114116
return ss.str();
115117
}
116118

0 commit comments

Comments
 (0)