All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.actelion.research.chem.coords.InventorChain Maven / Gradle / Ivy

There is a newer version: 2024.11.2
Show newest version
package com.actelion.research.chem.coords;

/**
 * Created by thomas on 9/23/16.
 */
public class InventorChain {
	protected int[] mAtom;
	protected int[] mBond;

	public InventorChain(int chainLength) {
		mAtom = new int[chainLength];
		mBond = new int[chainLength];
		// last mBond[] value isn't needed if chain isn't a ring
	}

	protected int getChainLength() {
		return mAtom.length;
	}

	protected int[] getRingAtoms() {
		return mAtom;
	}

	protected int[] getRingBonds() {
		return mBond;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy