Difference between revisions of "830 - BestAlignment::ClearPositions()"

From Genome Analysis Wiki
Jump to navigationJump to search
(Created page with "<source lang="cpp"> void BestAlignment::ClearPositions() { cacheItems = 0; for (int i = 0; i < cacheSize; i++) cache[i] = -1; } </source>")
 
 
(No difference)

Latest revision as of 13:53, 28 October 2013

void BestAlignment::ClearPositions()
{
	cacheItems = 0;

	for (int i = 0; i < cacheSize; i++)
		cache[i] = -1;
}