-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTLFormulaSet.cpp
More file actions
40 lines (32 loc) · 873 Bytes
/
Copy pathTLFormulaSet.cpp
File metadata and controls
40 lines (32 loc) · 873 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/* File: TLFormulaSet.cc
Author: Marc Diefenbruch, Axel Hirche
Project: QUEST
Date: (C) 1997, 1998 University of Essen, Germany
*/
#include "SCL/SCStream.h"
#include "SCL/SCList.tmpl.h"
#include "TLFormula.h"
#include "TLFormulaUnary.h"
#include "TLFormulaBinary.h"
#include "TLFormulaTRUE.h"
#include "TLFormulaFALSE.h"
#include "TLHelp.h"
#include "TLFormulaSet.h"
#if _TL_INLINING_ == 0
#include "TLFormulaSet.inl.h"
#endif
#if _SC_DMALLOC
#include <dmalloc.h>
#endif
#if _TL_DEBUG_
extern SCStream tldebug;
#endif
SCBoolean TLFormulaSet::trueEquivEmpty;
SCBoolean TLFormulaSet::nowIsPureAtomic;
SCBoolean TLFormulaSet::extendedAutomaton;
TLFormulaTRUE TLFormulaSet::truePhi;
TLFormulaFALSE TLFormulaSet::falsePhi;
SCStream& TLFormulaSet::Display (SCStream& out) const
{
return out << *this;
}