some more debugging output

This commit is contained in:
chriseth
2022-03-20 22:34:22 +01:00
parent c8c9067c9b
commit fe15610ba4
3 changed files with 12 additions and 1 deletions
+4 -1
View File
@@ -497,7 +497,10 @@ public:
std::vector<std::string> argsAsString;
for (auto const& arg: arguments)
argsAsString.emplace_back(arg.toString());
return name + "(" + util::joinHumanReadable(argsAsString) + ")";
if (arguments.size() == 2)
return "(" + argsAsString[0] + " " + name + " " + argsAsString[1] + ")";
else
return name + "(" + util::joinHumanReadable(argsAsString) + ")";
}
private:
/// Manual constructors, should only be used by SolverInterface and this class itself.