Package org.bmdrc.chemistry.util

Examples of org.bmdrc.chemistry.util.TopologicalDistanceMatrix


    public void writeResultMoleculeSet(File theResultFilePath) {
        SDFWriter.writeSDFile(this.getResultMoleculeSet(), theResultFilePath);
    }
   
    private boolean __isMatchedMoleculeIn2DNMR(IMolecule theMolecule) {
        TopologicalDistanceMatrix theDistanceMatrixAmongCarbon = new TopologicalDistanceMatrix(theMolecule);
        List<CarbonQuery> theCarbonQueryListInMolecule = this.__generateCarbonQueryListInMolecule(theMolecule, theDistanceMatrixAmongCarbon);
        List<List<Integer>> thePreviousPathMatrix = new ArrayList<>();

        for (int qi = 0, qEnd = this.getCarbonQueryList().size(); qi < qEnd; qi++) {
            List<List<Integer>> theNewPathMatrix = new ArrayList<>();
View Full Code Here

TOP

Related Classes of org.bmdrc.chemistry.util.TopologicalDistanceMatrix

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.