From 6444bc7c5e7e9817242887453b8edc02c6d7bd4a Mon Sep 17 00:00:00 2001 From: Matthias Volk Date: Tue, 13 Nov 2018 15:56:00 +0100 Subject: [PATCH] Better error message --- src/storm-dft/storage/dft/DFTState.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/storm-dft/storage/dft/DFTState.cpp b/src/storm-dft/storage/dft/DFTState.cpp index 9d8a4d9d2..607c284ff 100644 --- a/src/storm-dft/storage/dft/DFTState.cpp +++ b/src/storm-dft/storage/dft/DFTState.cpp @@ -280,7 +280,7 @@ namespace storm { template bool DFTState::isActive(size_t id) const { - STORM_LOG_ASSERT(mDft.isRepresentative(id), "Element is no representative."); + STORM_LOG_ASSERT(mDft.isRepresentative(id), "Element " << mDft.getElement(id)->toString() << " is no representative."); return mStatus[mStateGenerationInfo.getSpareActivationIndex(id)]; }