UnCoVer (Using Coverability for Verification)
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Pages
graph_generator.h
1 /***************************************************************************
2  * Copyright (C) 2014 by Jan Stückrath <jan.stueckrath@uni-due.de> *
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 2 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, write to the *
16  * Free Software Foundation, Inc., *
17  * 51 Franklin St, Fifth Floor, Boston, MA 02110, USA *
18  ***************************************************************************/
19 
20 #ifdef COMPILE_UNIT_TESTS
21 
22 #ifndef GRAPH_GENERATOR_H_
23 #define GRAPH_GENERATOR_H_
24 
25 #include "../graphs/Rule.h"
26 #include "../graphs/Hypergraph.h"
27 
28 namespace uncover {
29  namespace test {
30 
37  extern graphs::Rule_sp getRule(size_t index);
38 
45  extern graphs::Hypergraph_sp getGraph(size_t index);
46 
47  }
48 }
49 
50 #endif /* GRAPH_GENERATOR_H_ */
51 
52 #endif
shared_ptr< Rule > Rule_sp
Alias for a shared pointer to a Rule.
Definition: Rule.h:105
shared_ptr< Hypergraph > Hypergraph_sp
Alias for a shared pointer to a Hypergraph.
Definition: Hypergraph.h:85