GuilhermeStracini/POC-dotnet-Dijkstra

View on GitHub
Src/POCDijkstra/Dijkstra/Dijkstra.cs

Summary

Maintainability
A
1 hr
Test Coverage

Method FindShortestPath has 26 lines of code (exceeds 25 allowed). Consider refactoring.
Open

        public INode[] FindShortestPath(INode @from, INode to)
        {
            var control = new VisitingData();

            control.UpdateWeight(@from, new Weight(null, 0));
Severity: Minor
Found in Src/POCDijkstra/Dijkstra/Dijkstra.cs - About 1 hr to fix

    There are no issues that match your filters.

    Category
    Status