Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
gs-algo
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
graphstream
gs-algo
Commits
162069dd
Commit
162069dd
authored
13 years ago
by
gsavin
Browse files
Options
Downloads
Patches
Plain Diff
Delete main() in LCFGenerator...
parent
953ad1c0
Branches
Branches containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/org/graphstream/algorithm/generator/LCFGenerator.java
+0
-14
0 additions, 14 deletions
src/org/graphstream/algorithm/generator/LCFGenerator.java
src/org/graphstream/algorithm/generator/lcf/BiggsSmithGraphGenerator.java
+1
-1
1 addition, 1 deletion
...eam/algorithm/generator/lcf/BiggsSmithGraphGenerator.java
with
1 addition
and
15 deletions
src/org/graphstream/algorithm/generator/LCFGenerator.java
+
0
−
14
View file @
162069dd
...
...
@@ -32,11 +32,6 @@ package org.graphstream.algorithm.generator;
import
java.util.HashSet
;
import
org.graphstream.algorithm.generator.lcf.Balaban10CageGraphGenerator
;
import
org.graphstream.algorithm.generator.lcf.BiggsSmithGraphGenerator
;
import
org.graphstream.algorithm.generator.lcf.NauruGraphGenerator
;
import
org.graphstream.graph.implementations.DefaultGraph
;
/**
* Build a graph using a lcf notation.
*
...
...
@@ -163,13 +158,4 @@ public class LCFGenerator extends BaseGenerator {
return
String
.
format
(
"%03d_%03d"
,
i1
,
i2
);
}
public
static
void
main
(
String
...
args
)
throws
Exception
{
DefaultGraph
g
=
new
DefaultGraph
(
"g"
);
LCFGenerator
gen
=
new
BiggsSmithGraphGenerator
();
gen
.
addSink
(
g
);
g
.
display
(
false
);
gen
.
begin
();
}
}
This diff is collapsed.
Click to expand it.
src/org/graphstream/algorithm/generator/lcf/BiggsSmithGraphGenerator.java
+
1
−
1
View file @
162069dd
...
...
@@ -59,7 +59,7 @@ public class BiggsSmithGraphGenerator extends LCFGenerator {
-
18
,
25
,
38
,
31
,
-
25
,
24
,
-
46
,
-
14
,
28
,
11
,
21
,
35
,
-
39
,
43
,
36
,
-
38
,
14
,
50
,
43
,
36
,
-
11
,
-
36
,
-
24
,
45
,
8
,
19
,
-
25
,
38
,
20
,
-
24
,
-
14
,
-
21
,
-
8
,
44
,
-
31
,
-
38
,
-
28
,
37
);
public
BiggsSmithGraphGenerator
()
{
super
(
BIGGS_SMITH_GRAPH_LCF
,
102
,
false
);
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
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