001 // GraphLab Project: http://graphlab.sharif.edu 002 // Copyright (C) 2008 Mathematical Science Department of Sharif University of Technology 003 // Distributed under the terms of the GNU General Public License (GPL): http://www.gnu.org/licenses/ 004 package graphlab.plugins.algorithmanimator; 005 006 import graphlab.graph.graph.EdgeModel; 007 import graphlab.graph.graph.VertexModel; 008 import graphlab.library.algorithms.shortestpath.Dijkstra; 009 import graphlab.plugins.algorithmanimator.extension.AlgorithmExtension; 010 011 public class DijkstraAnim 012 extends Dijkstra<VertexModel, EdgeModel> 013 implements AlgorithmExtension { 014 015 public String getName() { 016 return "Dijkstra"; 017 } 018 019 public String getDescription() { 020 return "Dijkstra"; 021 } 022 }