-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTLBuechi.inl.h
59 lines (39 loc) · 1.03 KB
/
TLBuechi.inl.h
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
47
48
49
50
51
52
53
54
55
56
57
58
59
/*
* File: TLBuechi.inl.h
* Project: QUEST
* Author: Marc Diefenbruch, Axel M. Hirche
* Date: (C) 1997, 1998 University of Essen, Germany
*/
#ifndef _TL_BUECHI_INL_H_
#define _TL_BUECHI_INL_H_
/***************** GetNumOfStates: *************/
TLINLINE SCNatural TLBuechi::GetNumOfStates (void) const
{
assert (stateList);
return stateList->NumOfElems();
}
/***************** GetStateList: *****************/
TLINLINE TLStateList* TLBuechi::GetStateList (void) const
{
return stateList;
}
/***************** GetInitialStates: *****************/
TLINLINE TLStateList* TLBuechi::GetInitialStates (void) const
{
return initialStates;
}
/***************** GetOrigPhi: *****************/
TLINLINE class TLFormula* TLBuechi::GetOrigPhi (void) const
{
return origPhi;
}
/***************** GetPhi: *****************/
TLINLINE class TLFormula* TLBuechi::GetPhi (void) const
{
return phi;
}
TLINLINE SCNatural TLBuechi::GetNumOfAcceptanceSets (void) const
{
return nextAcceptanceSetNo;
}
#endif // _TL_BUECHI_INL_H_