Browse Source

fixing error & warning...

tempestpy_adaptions
gereon 12 years ago
parent
commit
e632fc1bb6
  1. 2
      src/models/AtomicPropositionsLabeling.h
  2. 2
      src/utility/utility.h

2
src/models/AtomicPropositionsLabeling.h

@ -188,7 +188,7 @@ public:
<< this->singleLabelings[ap.second]->getNumberOfSetBits();
out << " state(s)" << std::endl;
}
for(int i = 0; i < apCountMax; ++i) {
for(unsigned int i = 0; i < apCountMax; ++i) {
std::cout << "iterator " << i << std::endl;
for(auto it = this->singleLabelings[i]->begin(); it != this->singleLabelings[i]->end(); ++it) {
out << "next value: " << *it << std::endl;

2
src/utility/utility.h

@ -8,7 +8,7 @@
#ifndef UTILITY_H_
#define UTILITY_H_
#include "src/models/dtmc.h"
#include "src/models/Dtmc.h"
namespace mrmc {

Loading…
Cancel
Save