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.util.AcyclicChecker; 007 import graphlab.plugins.algorithmanimator.extension.AlgorithmExtension; 008 009 public class AcyclicCheckerAnim 010 extends AcyclicChecker 011 implements AlgorithmExtension { 012 013 public String getName() { 014 return "Acyclic Checker"; 015 } 016 017 public String getDescription() { 018 return "Checks if the graph is acyclic."; 019 } 020 }