Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
Learning RFSA in reverse
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Thomas
Learning RFSA in reverse
Commits
6b0ce0db
Commit
6b0ce0db
authored
5 years ago
by
Thomas
Browse files
Options
Downloads
Patches
Plain Diff
Kiss2 fix comment parsing
parent
33c1d96e
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
Leere Datei
+16
-1
16 additions, 1 deletion
Leere Datei
learnlib/Kiss2Parser.java
+1
-1
1 addition, 1 deletion
learnlib/Kiss2Parser.java
with
17 additions
and
2 deletions
Leere Datei
+
16
−
1
View file @
6b0ce0db
../ifsm1.kiss,148,73,9,19624,75,10,34643
file,origstates,forwardstates,forward rounds,mqueries,reversestates,reverse rounds,mqueries2
ifsm1.kiss,148,73,9,19624,75,10,34643
intel_edge.dummy.kiss,56,24,6,6562,24,5,4623
intel_edge.dummy.kiss,56,24,6,6562,24,5,4623
fo.16.kiss,33,15,5,1518,15,6,1160
fo.20.kiss,41,18,4,1870,18,8,1407
fo.30.kiss,61,30,6,7826,30,11,4032
fo.40.kiss,81,40,5,8954,40,12,9628
fo.50.kiss,101,50,11,29747,51,14,11935
fo.60.kiss,121,60,9,32399,61,18,14884
fo.70.kiss,141,71,10,67838,72,17,22594
th.20.kiss,41,17,6,2652,17,8,1541
th.25.kiss,51,26,7,5688,26,7,2619
th.30.kiss,61,31,7,7426,31,7,3894
th.35.kiss,71,36,8,11881,39,9,5576
th.40.kiss,81,40,8,13794,40,13,6720
th.55.kiss,109,50,9,25670,50,13,9800
teste.kiss,4,3,2,65,4,3,85
This diff is collapsed.
Click to expand it.
learnlib/Kiss2Parser.java
+
1
−
1
View file @
6b0ce0db
...
@@ -22,7 +22,7 @@ public class Kiss2Parser extends GraphvizParser {
...
@@ -22,7 +22,7 @@ public class Kiss2Parser extends GraphvizParser {
Scanner
s
=
new
Scanner
(
filename
);
Scanner
s
=
new
Scanner
(
filename
);
while
(
s
.
hasNextLine
()){
while
(
s
.
hasNextLine
()){
String
line
=
s
.
nextLine
();
String
line
=
s
.
nextLine
();
line
=
line
.
split
(
"#"
,
1
)[
0
].
trim
();
line
=
line
.
split
(
"#"
,
2
)[
0
].
trim
();
if
(
line
.
isEmpty
()
||
line
.
startsWith
(
"."
))
if
(
line
.
isEmpty
()
||
line
.
startsWith
(
"."
))
continue
;
continue
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment