~tapaal-ltl/verifypn/stubborn-set-refactor-merged

« back to all changes in this revision

Viewing changes to include/LTL/Algorithm/ProductPrinter.h

  • Committer: Peter G. Jensen
  • Date: 2021-03-05 16:43:31 UTC
  • mfrom: (226.2.36 ltl-model-checker)
  • Revision ID: root@petergjoel.dk-20210305164331-ufyicvb925rocwrj
Merged stubborn-refactor and ltl engine

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Copyright (C) 2020  Nikolaj J. Ulrik <nikolaj@njulrik.dk>,
 
2
 *                     Simon M. Virenfeldt <simon@simwir.dk>
 
3
 *
 
4
 * This program is free software: you can redistribute it and/or modify
 
5
 * it under the terms of the GNU General Public License as published by
 
6
 * the Free Software Foundation, either version 3 of the License, or
 
7
 * (at your option) any later version.
 
8
 *
 
9
 * This program is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 * GNU General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU General Public License
 
15
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
16
 */
 
17
 
 
18
#ifndef VERIFYPN_PRODUCTPRINTER_H
 
19
#define VERIFYPN_PRODUCTPRINTER_H
 
20
 
 
21
#include "LTL/Structures/ProductStateFactory.h"
 
22
#include "LTL/ProductSuccessorGenerator.h"
 
23
#include "PetriEngine/Structures/StateSet.h"
 
24
#include "PetriEngine/Structures/Queue.h"
 
25
#include "PetriEngine/PQL/Contexts.h"
 
26
 
 
27
namespace LTL::ProductPrinter {
 
28
    void printProduct(ProductSuccessorGenerator &successorGenerator, std::ostream &os, const PetriEngine::PetriNet &net,
 
29
                      PetriEngine::PQL::Condition_ptr formula);
 
30
}
 
31
#endif //VERIFYPN_PRODUCTPRINTER_H