Skip to content
/ Arilon Public

Arilon is a library to calculate a relationship identifier between two nodes in a given graph

License

Notifications You must be signed in to change notification settings

Aniel/Arilon

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Arilon Logo

Amazing Relationship Namer


Arilon is a library to calculate a relationship identifier between two nodes in a given graph.

Example

using Arilon.Core;
using Arilon.Core.Abstractions;
using Arilon.Database.InFiles;
var nodes = new List<INode> { new Node("node1"), new Node("node2") };
var edges = new List<IEdge> { new Edge("edge1", "node1", "node2") };
IDataProvider dataProvider = new InFileDataProvider(nodes, edges);
Arilon arilon = new Arilon(dataProvider);

ArilonResult result = await arilon.CalculateRelationIdentifier("node1", "node2");

Thanks

This library was made with the help and dedication from @NKaufhold and Shawn

License

MIT see LICENSE

About

Arilon is a library to calculate a relationship identifier between two nodes in a given graph

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages