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.library.algorithms.graphdecomposition.BiconnectedComponents; 007 import graphlab.plugins.algorithmanimator.extension.AlgorithmExtension; 008 009 public class BiconnectedComponentsAnim 010 extends BiconnectedComponents 011 implements AlgorithmExtension { 012 013 public String getName() { 014 return "Biconnected Components"; 015 } 016 017 public String getDescription() { 018 return "Biconnected Components"; 019 } 020 }