Merge pull request #1978 from stolk/master

Added Benchmark Demo for packed convex shapes.
This commit is contained in:
erwincoumans
2018-11-12 21:51:25 -08:00
committed by GitHub
4 changed files with 709 additions and 1 deletions

View File

@@ -56,7 +56,7 @@ public:
{
for (int h = 0; h < A.m_rowNonZeroElements1[i].size(); h++)
{
int j = A.m_rowNonZeroElements1[i][h];
j = A.m_rowNonZeroElements1[i][h];
if (j != i) //skip main diagonal
{
delta += A(i, j) * x[j];