diff options
Diffstat (limited to 'lib/Solver/PCLoggingSolver.cpp')
-rw-r--r-- | lib/Solver/PCLoggingSolver.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Solver/PCLoggingSolver.cpp b/lib/Solver/PCLoggingSolver.cpp index 3c605256..03146251 100644 --- a/lib/Solver/PCLoggingSolver.cpp +++ b/lib/Solver/PCLoggingSolver.cpp @@ -128,7 +128,7 @@ public: e = objects.end(); i != e; ++i, ++values_it) { const Array *array = *i; std::vector<unsigned char> &data = *values_it; - os << "# arr" << array->id << " = ["; + os << "# " << array->name << " = ["; for (unsigned j = 0; j < array->size; j++) { os << (int) data[j]; if (j+1 < array->size) |