Ejemplo n.º 1
0
 public static string SMILESNotation(OrganicMolecule mol)
 {
     return new SMILESGenerator(mol).SMILESNotation;
 }
Ejemplo n.º 2
0
 public SMILESGenerator(OrganicMolecule mol)
 {
     this.mol = mol;
     smiles = "";
     GenerateSMILES();
 }