Uses of Interface
org.episteme.core.mathematics.discrete.GraphWeightAdapter
Packages that use GraphWeightAdapter
-
Uses of GraphWeightAdapter in org.episteme.core.mathematics.discrete
Fields in org.episteme.core.mathematics.discrete declared as GraphWeightAdapterModifier and TypeFieldDescriptionstatic final GraphWeightAdapter<Double> GraphWeightAdapter.DOUBLEAdapter forDouble.static final GraphWeightAdapter<Integer> GraphWeightAdapter.INTEGERAdapter forInteger.static final GraphWeightAdapter<Real> GraphWeightAdapter.REALAdapter forReal.Constructors in org.episteme.core.mathematics.discrete with parameters of type GraphWeightAdapterModifierConstructorDescriptionAStarSearch(GraphWeightAdapter<W> weightAdapter, AStarHeuristic<V, W> heuristic) BellmanFordShortestPath(GraphWeightAdapter<W> weightAdapter) DijkstraShortestPath(WeightedGraph<V, W> graph, GraphWeightAdapter<W> adapter) Creates a new Dijkstra algorithm instance.FloydWarshallShortestPath(GraphWeightAdapter<W> weightAdapter) KruskalMinimumSpanningTree(GraphWeightAdapter<W> weightAdapter) PrimMinimumSpanningTree(GraphWeightAdapter<W> weightAdapter) Creates a new Prim's MST algorithm instance.