Browse Source

prints

tempestpy_adaptions
Timo Philipp Gros 7 years ago
parent
commit
79ba044c49
  1. 7
      src/storm/modelchecker/csl/helper/SparseMarkovAutomatonCslHelper.cpp

7
src/storm/modelchecker/csl/helper/SparseMarkovAutomatonCslHelper.cpp

@ -661,6 +661,13 @@ namespace storm {
element /= foxGlynnResult.totalWeight;
}
ValueType leftSum=0;
for (int i =0 ; i< foxGlynnResult.left; i++){
leftSum += foxGlynnResult.weights[i];
std::cout << foxGlynnResult.weights[i] << "\n";
}
std::cout<< "sum Left is " << leftSum <<"\n";
// (4) define vectors/matrices
std::vector<ValueType> init(numberOfStates, -1);

Loading…
Cancel
Save