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 005 package graphlab.plugins.algorithmanimator; 006 007 import graphlab.graph.graph.EdgeModel; 008 import graphlab.graph.graph.VertexModel; 009 import graphlab.library.algorithms.traversal.DepthFirstSearch; 010 import graphlab.plugins.algorithmanimator.extension.AlgorithmExtension; 011 012 public class DFSAnim 013 extends DepthFirstSearch<VertexModel, EdgeModel> 014 implements AlgorithmExtension { 015 016 public String getName() { 017 return "DFS"; 018 } 019 020 public String getDescription() { 021 return "Depth First Search"; 022 } 023 }