Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 747 Bytes

Readme.md

File metadata and controls

27 lines (20 loc) · 747 Bytes

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