Skip to content

Commit

Permalink
fixed counter loop
Browse files Browse the repository at this point in the history
  • Loading branch information
Rich Apodaca committed Jul 18, 2009
1 parent fd15030 commit 0c2c54e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public BitSet getFingerprint(Molecule molecule)

// System.out.println(molecule.countAtoms());

for (int i = 1; i < molecule.countAtoms(); i++)
for (int i = 0; i < molecule.countAtoms(); i++)
{
Atom atom = molecule.getAtom(i);

Expand Down

0 comments on commit 0c2c54e

Please sign in to comment.