Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Valentin Touzeau
lruzdd
Commits
19c2915e
Commit
19c2915e
authored
Jun 27, 2018
by
Valentin Touzeau
Committed by
EXT Valentin Touzeau
Jun 27, 2018
Browse files
Adds supports for single zdd manager
parent
21231a3a
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/Domain.h
View file @
19c2915e
...
...
@@ -19,11 +19,13 @@ public:
// This alias is needed by Otawa
using
t
=
AbstractValue
;
template
<
typename
...
Args
>
Domain
(
const
otawa
::
icat3
::
LBlock
*
focus
,
const
otawa
::
icat3
::
LBlockCollection
&
coll
,
int
set
,
const
AbstractValue
*
init
)
:
DomainPolicy
(
focus
,
coll
,
set
,
init
),
const
AbstractValue
*
init
,
Args
...
args
)
:
DomainPolicy
(
focus
,
coll
,
set
,
init
,
args
...),
m_focus
(
focus
),
m_bot
(
DomainPolicy
::
createBot
(
focus
,
coll
,
set
)),
m_top
(
DomainPolicy
::
createTop
(
focus
,
coll
,
set
)),
...
...
src/ZDD/ZDDMayDomainPolicy.h
View file @
19c2915e
...
...
@@ -21,6 +21,15 @@ public:
{
}
ZDDMayDomainPolicy
(
const
otawa
::
icat3
::
LBlock
*
,
const
otawa
::
icat3
::
LBlockCollection
&
coll
,
int
set
,
const
AbstractValue
*
,
ManagerPtr
manager
)
:
m_manager
(
manager
)
{
}
AbstractValue
createBot
(
const
otawa
::
icat3
::
LBlock
*
,
const
otawa
::
icat3
::
LBlockCollection
&
,
int
)
...
...
src/ZDD/ZDDMustDomainPolicy.h
View file @
19c2915e
...
...
@@ -21,6 +21,15 @@ public:
{
}
ZDDMustDomainPolicy
(
const
otawa
::
icat3
::
LBlock
*
,
const
otawa
::
icat3
::
LBlockCollection
&
coll
,
int
set
,
const
AbstractValue
*
,
ManagerPtr
manager
)
:
m_manager
(
manager
)
{
}
AbstractValue
createBot
(
const
otawa
::
icat3
::
LBlock
*
,
const
otawa
::
icat3
::
LBlockCollection
&
,
int
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment