⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cyclebasistest.java

📁 化学图形处理软件
💻 JAVA
字号:
/* $RCSfile$ * $Author: egonw $ * $Date: 2007-02-07 20:20:03 +0000 (Mi, 07 Feb 2007) $ * $Revision: 7886 $ *  * Copyright (C) 2004-2007  The Chemistry Development Kit (CDK) project *  * Contact: cdk-devel@lists.sourceforge.net *  * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License * as published by the Free Software Foundation; either version 2.1 * of the License, or (at your option) any later version. * All we ask is that proper credit is given for our work, which includes * - but is not limited to - adding the above copyright notice to the beginning * of your source code files, and to any copyright notice that you may distribute * with programs based on this work. *  * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU Lesser General Public License for more details. *  * You should have received a copy of the GNU Lesser General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.  *  */package org.openscience.cdk.test.ringsearch.cyclebasis;import java.util.Arrays;import junit.framework.Test;import junit.framework.TestSuite;import org._3pq.jgrapht.alg.ConnectivityInspector;import org._3pq.jgrapht.graph.SimpleGraph;import org.openscience.cdk.ringsearch.cyclebasis.CycleBasis;import org.openscience.cdk.test.CDKTestCase;/** * This class tests the CycleBasis class. * * @cdk.module test-standard * * @author     Ulrich Bauer <baueru@cs.tum.edu> */public class CycleBasisTest extends CDKTestCase {		public static Test suite() {		return new TestSuite(CycleBasisTest.class);	}	CycleBasis basis;	SimpleGraph g;	protected void setUp() {		g = new SimpleGraph(  );				g.addVertex( "a" );		g.addVertex( "b" );		g.addVertex( "c" );		g.addVertex( "d" );		g.addVertex( "e" );		g.addVertex( "f" );		g.addVertex( "g" );		g.addVertex( "h" );		g.addVertex( "i" );		g.addVertex( "j" );		g.addVertex( "k" );				g.addEdge( "a", "b" );		g.addEdge( "a", "c" );		g.addEdge( "b", "c" );		g.addEdge( "b", "d" );		g.addEdge( "c", "d" );				g.addEdge( "d", "e" );				g.addEdge( "d", "g" );				g.addEdge( "e", "f" );		g.addEdge( "e", "h" );		g.addEdge( "f", "h" );				g.addEdge( "i", "j" );		g.addEdge( "i", "k" );		g.addEdge( "j", "k" );				basis = new CycleBasis(g);	}		public void testCycleBasis_UndirectedGraph() {		this.setUp(); // just run it once more		assertNotNull(basis);	}		public void testCycles() {		int trueCycleCount = g.edgeSet().size() - g.vertexSet().size() 			+ new ConnectivityInspector(g).connectedSets().size(); 		assertEquals(trueCycleCount, basis.cycles().size());	}			public void testWeightVector() {		assertTrue(Arrays.equals(basis.weightVector(), new int[] {3,3,3,3}) );	}		public void testEssentialCycles() {		assertEquals(4, basis.essentialCycles().size());	}		public void testRelevantCycles() {		assertEquals(4, basis.relevantCycles().size());	}		public void testEquivalenceClasses() {		assertEquals(4, basis.equivalenceClasses().size());	}	}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -