Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Alexandru Dura
SPPF Earley Parser
Commits
bb0d0afb
Commit
bb0d0afb
authored
Jan 31, 2020
by
Alexandru Dura
Browse files
Return the set of child nodes for an SPPF node
parent
65c09a21
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/se/lth/sep/SPPFNode.java
View file @
bb0d0afb
package
se.lth.sep
;
import
java.util.HashSet
;
import
java.util.Set
;
public
class
SPPFNode
{
static
public
class
FamilyNode
{
...
...
@@ -84,7 +85,7 @@ public class SPPFNode {
visitor
.
visit
(
this
);
}
public
Iterable
<
FamilyNode
>
getChildren
()
{
public
Set
<
FamilyNode
>
getChildren
()
{
return
children
;
}
...
...
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