From cf0ea9235d27eeca47540ba5fba11acfc7f4d3d3 Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Tue, 9 Jun 2009 06:22:35 +0000 Subject: Switch Array* print-outs to use name instead of ID, and update a few constructors I missed. git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@73127 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Solver/IndependentSolver.cpp | 4 ++-- lib/Solver/PCLoggingSolver.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/Solver') diff --git a/lib/Solver/IndependentSolver.cpp b/lib/Solver/IndependentSolver.cpp index 7ebee1c7..69f9567c 100644 --- a/lib/Solver/IndependentSolver.cpp +++ b/lib/Solver/IndependentSolver.cpp @@ -131,7 +131,7 @@ public: os << ", "; } - os << "MO" << array->id; + os << "MO" << array->name; } for (elements_ty::const_iterator it = elements.begin(), ie = elements.end(); it != ie; ++it) { @@ -144,7 +144,7 @@ public: os << ", "; } - os << "MO" << array->id << " : " << dis; + os << "MO" << array->name << " : " << dis; } os << "}"; } 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 &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) -- cgit 1.4.1