Skip to content

Commit

Permalink
Fix maybeCrossed in LayoutRefiner
Browse files Browse the repository at this point in the history
  • Loading branch information
k-ujihara committed Nov 30, 2018
1 parent 6ace008 commit 68dc317
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ List<AtomPair> findCongestedPairs() {
Set<IntTuple> ringpairs = new HashSet<>();

// score at which to check for crossing bonds
final double maybeCrossed = 1 / (2 * 2);
final double maybeCrossed = 1.0 / (2 * 2);

final int numAtoms = mol.getAtomCount();
for (int u = 0; u < numAtoms; u++) {
Expand Down

0 comments on commit 68dc317

Please sign in to comment.