-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTLFormulaOR.h
More file actions
46 lines (35 loc) · 1.44 KB
/
Copy pathTLFormulaOR.h
File metadata and controls
46 lines (35 loc) · 1.44 KB
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
40
41
42
43
44
45
46
/*
* File: TLFormulaOR.h
* Project: QUEST
* Author: Marc Diefenbruch, Axel M. Hirche
* Date: (C) 1997, 1998 University of Essen, Germany
*/
#ifndef _TLFORMULAOR_H_
#define _TLFORMULAOR_H_
#include "TLFormulaBinary.h"
class TLFormulaOR : public TLFormulaBinary
{
public:
TLFormulaOR ( TLFormula* prightOp,
TLFormula* pLeftop,
const SCObject* pFather = NULL);
TLFormulaOR (const TLFormulaOR&);
TLFormulaOR (const TLFormulaOR*);
~TLFormulaOR (void);
TLFormula* GetCopy (void) const;
TLFormula* PushNegations (SCBoolean) const;
TLFormula* Rewrite (void) const;
SCNatural GetPrecedenceLevel (void) const;
SCBoolean operator== (const TLFormula&) const;
SCBoolean operator== (const TLFormula*) const;
SCBoolean operator!= (const TLFormula&) const;
SCBoolean operator!= (const TLFormula*) const;
protected:
private:
TLFormulaOR (void);
// Forbidden!
};
#if _TL_INLINING_
#include "TLFormulaOR.inl.h"
#endif
#endif // _TLFORMULAOR_H_