Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Spot
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
117
Issues
117
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Spot
Spot
Commits
5711d344
Commit
5711d344
authored
Sep 27, 2015
by
Alexandre Duret-Lutz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
formula: hide initializer lists from swig
* src/ltlast/formula.hh: Here.
parent
96806681
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
src/ltlast/formula.hh
src/ltlast/formula.hh
+6
-0
No files found.
src/ltlast/formula.hh
View file @
5711d344
...
...
@@ -974,6 +974,7 @@ namespace spot
return
ptr_
->
is
(
o
);
}
#ifndef SWIG
bool
is
(
op
o1
,
op
o2
)
const
{
return
ptr_
->
is
(
o1
,
o2
);
...
...
@@ -983,6 +984,7 @@ namespace spot
{
return
ptr_
->
is
(
l
);
}
#endif
formula
get_child_of
(
op
o
)
const
{
...
...
@@ -992,6 +994,7 @@ namespace spot
return
formula
(
f
);
}
#ifndef SWIG
formula
get_child_of
(
std
::
initializer_list
<
op
>
l
)
const
{
auto
f
=
ptr_
->
get_child_of
(
l
);
...
...
@@ -999,6 +1002,7 @@ namespace spot
f
->
clone
();
return
formula
(
f
);
}
#endif
uint8_t
min
()
const
{
...
...
@@ -1020,6 +1024,7 @@ namespace spot
return
ptr_
->
id
();
}
#ifndef SWIG
class
SPOT_API
formula_child_iterator
final
{
const
fnode
*
const
*
ptr_
;
...
...
@@ -1072,6 +1077,7 @@ namespace spot
{
return
ptr_
->
end
();
}
#endif
formula
nth
(
unsigned
i
)
const
{
...
...
Write
Preview
Markdown
is supported
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