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.tests;
005    
006    import graphlab.plugins.algorithmanimator.extension.AlgorithmExtension;
007    
008    public class TestInducedSubgraphs
009            extends graphlab.library.algorithms.subgraphs.TestInducedSubgraphs
010            implements AlgorithmExtension {
011    
012        public String getName() {
013            return "Induced Subgraphs Test";
014        }
015    
016        public String getDescription() {
017            return "Just Induced Subgraphs Test, no input from user";
018        }
019    }