SimpleGraph: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 2: | Line 2: | ||
is an open source project that allows to wrap Systems APIs in a way that graph algorithms and storage can be applied. As an implementation Apache Gremlin/Tinkerpop is used. | is an open source project that allows to wrap Systems APIs in a way that graph algorithms and storage can be applied. As an implementation Apache Gremlin/Tinkerpop is used. | ||
= FileSystem example = | = FileSystem example = | ||
<graphviz> | |||
<graphviz> | <graphviz> | ||
digraph FileSystemGraph { | digraph FileSystemGraph { | ||
rankdir | rankdir "RL"; | ||
"header.txt" -> "etc" [ label="parent"] | |||
"SimpleGraphImpl.java" -> "impl" [ label="parent"] | |||
"test" -> "src" [ label="parent"] | |||
"java" -> "main" [ label="parent"] | |||
"RythmContext.java" -> "rythm" [ label="parent"] | |||
"etc" -> "src" [ label="parent"] | |||
"rythm" -> "main" [ label="parent"] | |||
"test.rythm" -> "rythm" [ label="parent"] | |||
"main" -> "src" [ label="parent"] | |||
"com" -> "java" [ label="parent"] | |||
"graphvizTree.rythm" -> "rythm" [ label="parent"] | |||
"air-routes-small.graphml" -> "test" [ label="parent"] | |||
"bitplan" -> "com" [ label="parent"] | |||
"java" -> "test" [ label="parent"] | |||
"filesystem" -> "bitplan" [ label="parent"] | |||
"air-routes.graphml" -> "test" [ label="parent"] | |||
"simplegraph" -> "bitplan" [ label="parent"] | |||
"com" -> "java" [ label="parent"] | |||
"rythm" -> "bitplan" [ label="parent"] | |||
"bitplan" -> "com" [ label="parent"] | |||
"FileSystem.java" -> "filesystem" [ label="parent"] | |||
"simplegraph" -> "bitplan" [ label="parent"] | |||
"FileNode.java" -> "filesystem" [ label="parent"] | |||
"BaseTest.java" -> "simplegraph" [ label="parent"] | |||
"impl" -> "simplegraph" [ label="parent"] | |||
"TestRythm.java" -> "simplegraph" [ label="parent"] | |||
"SimpleGraph.java" -> "simplegraph" [ label="parent"] | |||
"TestTinkerPop3.java" -> "simplegraph" [ label="parent"] | |||
"SimpleNode.java" -> "simplegraph" [ label="parent"] | |||
"TestFileSystem.java" -> "simplegraph" [ label="parent"] | |||
"SimpleSystem.java" -> "simplegraph" [ label="parent"] | |||
"TestDebug.java" -> "simplegraph" [ label="parent"] | |||
"SimpleSystemImpl.java" -> "impl" [ label="parent"] | |||
"TestSuite.java" -> "simplegraph" [ label="parent"] | |||
"SimpleNodeImpl.java" -> "impl" [ label="parent"] | |||
} | } | ||
</graphviz> | </graphviz> | ||
Revision as of 12:45, 13 January 2018
SimpleGraph
SimpleGraph is an open source project that allows to wrap Systems APIs in a way that graph algorithms and storage can be applied. As an implementation Apache Gremlin/Tinkerpop is used.
FileSystem example
