~tapaal-ltl/verifypn/scc-optimise

« back to all changes in this revision

Viewing changes to src/LTL/LTL_algorithm/ModelChecker.cpp

  • Committer: Simon Virenfeldt
  • Date: 2020-09-25 12:13:12 UTC
  • mto: (227.2.3 spot-integration)
  • mto: This revision was merged to the branch mainline in revision 231.
  • Revision ID: simwir1@gmail.com-20200925121312-ird69od01abyo8dt
Implementation of NDFS with some requirements stubbed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//
 
2
// Created by Simon Mejlby Virenfeldt on 25/09/2020.
 
3
//
 
4
 
 
5
#include "LTL/LTL_algorithm/ModelChecker.h"
 
6
 
 
7
namespace LTL {
 
8
    ModelChecker::ModelChecker(const PetriEngine::PetriNet& net, PetriEngine::PQL::Condition_ptr condition)
 
9
        : successorGenerator(ProductSuccessorGenerator(net))
 
10
    {
 
11
        //TODO Create successor generator from net and condition
 
12
    }
 
13
}
 
14