@@ -1077,12 +1077,9 @@ DLL_PUBLIC const char* SATSolver::get_compilation_env()
1077
1077
return Solver::get_compilation_env ();
1078
1078
}
1079
1079
1080
- DLL_PUBLIC std::string SATSolver::get_text_version_info (const char * prefix)
1080
+ DLL_PUBLIC std::string SATSolver::get_thanks_info (const char * prefix)
1081
1081
{
1082
1082
std::stringstream ss;
1083
- ss << prefix << " CryptoMiniSat version " << get_version () << endl;
1084
- ss << prefix << " CMS Copyright (C) 2009-2020 Authors of CryptoMiniSat, see AUTHORS file" << endl;
1085
- ss << prefix << " CMS SHA revision " << get_version_sha1 () << endl;
1086
1083
ss << prefix << " Using VMTF and picosat code by Armin Biere from CaDiCaL" << endl;
1087
1084
ss << prefix << " Using WalkSAT by Henry Kautz, see Kautz and Selman Pushing the envelope: planning, propositional logic, and stochastic search, AAAI'96," << endl;
1088
1085
#ifdef USE_BREAKID
@@ -1092,20 +1089,12 @@ DLL_PUBLIC std::string SATSolver::get_text_version_info(const char* prefix)
1092
1089
#else
1093
1090
ss << prefix << " CMS is MIT licensed" << endl;
1094
1091
#endif
1095
-
1096
1092
ss << prefix << " Using code from 'When Boolean Satisfiability Meets Gauss-E. in a Simplex Way'" << endl;
1097
1093
ss << prefix << " by C.-S. Han and J.-H. Roland Jiang in CAV 2012. Fixes by M. Soos" << endl;
1098
1094
ss << prefix << " Using CCAnr from 'CCAnr: A Conf. Checking Based Local Search Solver [...]'" << endl;
1099
1095
ss << prefix << " by Shaowei Cai, Chuan Luo, and Kaile Su, SAT 2015" << endl;
1100
1096
ss << prefix << " Using Oracle code from 'Integrating Tree Decompositions [...]'" << endl;
1101
- ss << prefix << " by Tuukka Korhonen and Matti Jarvisalo, CP 2021" << endl;
1102
- ss << prefix << " CMS compilation env " << get_compilation_env () << endl;
1103
- #ifdef __GNUC__
1104
- ss << prefix << " CMS compiled with gcc version " << __VERSION__ << endl;
1105
- #else
1106
- ss << prefix << " CMS compiled with non-gcc compiler" << endl;
1107
- #endif
1108
-
1097
+ ss << prefix << " by Tuukka Korhonen and Matti Jarvisalo, CP 2021" ;
1109
1098
return ss.str ();
1110
1099
}
1111
1100
0 commit comments