Skip to content

Commit

Permalink
futz with deltamax comp to make a little more forgiving
Browse files Browse the repository at this point in the history
  • Loading branch information
glennhickey committed Jun 4, 2013
1 parent 0b32bab commit 287f827
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lod/impl/halLodGraph.cpp
Expand Up @@ -189,7 +189,8 @@ bool LodGraph::canAddColumn(ColumnIteratorConstPtr colIt)
if (canAdd == true && refPos != 0 && (hal_size_t)refPos !=
colIt->getReferenceSequence()->getSequenceLength() - 1)
{
canAdd = deltaMax > _step;
// .75 to bias a little against gaps
canAdd = deltaMax > _step *.75;
}
return canAdd;
}
Expand Down

0 comments on commit 287f827

Please sign in to comment.