Browse Source

Fixed removed variable

tempestpy_adaptions
Matthias Volk 7 years ago
parent
commit
f47e40d363
  1. 2
      src/storm/storage/dd/bisimulation/PartitionRefiner.cpp

2
src/storm/storage/dd/bisimulation/PartitionRefiner.cpp

@ -75,7 +75,7 @@ namespace storm {
template <storm::dd::DdType DdType, typename ValueType>
Partition<DdType, ValueType> PartitionRefiner<DdType, ValueType>::internalRefine(Signature<DdType, ValueType> const& signature, SignatureRefiner<DdType, ValueType>& signatureRefiner, Partition<DdType, ValueType> const& oldPartition) {
STORM_LOG_TRACE("Signature " << refinements << "[" << index << "] DD has " << signature.getSignatureAdd().getNodeCount() << " nodes.");
STORM_LOG_TRACE("Signature " << refinements << " DD has " << signature.getSignatureAdd().getNodeCount() << " nodes.");
auto start = std::chrono::high_resolution_clock::now();
auto newPartition = signatureRefiner.refine(oldPartition, signature);
auto totalTimeInRefinement = std::chrono::duration_cast<std::chrono::milliseconds>(std::chrono::high_resolution_clock::now() - start).count();

Loading…
Cancel
Save