-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTLFormulaFALSE.h
More file actions
36 lines (26 loc) · 886 Bytes
/
Copy pathTLFormulaFALSE.h
File metadata and controls
36 lines (26 loc) · 886 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
/*
* File: TLFormulaFALSE.h
* Project: QUEST
* Author: Marc Diefenbruch, Axel M Hirche
* Date: (C) 1997, 1998 University of Essen, Germany
*/
#ifndef _TLFORMULAFALSE_H_
#define _TLFORMULAFALSE_H_
#include "TLFormulaAtomic.h"
class TLFormulaFALSE : public TLFormulaAtomic
{
public:
TLFormulaFALSE (const SCObject* pFather = NULL);
TLFormulaFALSE (const TLFormulaFALSE&);
TLFormulaFALSE (const TLFormulaFALSE*);
~TLFormulaFALSE (void);
TLFormula* GetCopy (void) const;
TLFormula* PushNegations (SCBoolean) const;
TLFormula* Rewrite (void) const;
protected:
private:
};
#if _TL_INLINING_
#include "TLFormulaFALSE.inl.h"
#endif
#endif // _TLFORMULAFALSE_H_