Skip to content

Commit

Permalink
Fix testClone2
Browse files Browse the repository at this point in the history
  • Loading branch information
JacquesOlivierLachaud committed Jul 9, 2024
1 parent 62dd755 commit 0bc6987
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/base/testClone2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -912,7 +912,7 @@ bool testCloneTimings()
double t4 = computeTriangles<TriangleByClone>( size );
trace.info() << "Perimeter is " << t4 << std::endl;
++nb; nbok += Point::nbCreated == Point::nbDeleted ? 1 : 0;
++nb; nbok += Point::nbCreated < nbC ? 1 : 0;
++nb; nbok += Point::nbCreated <= nbC ? 1 : 0;
trace.info() << "(" << nbok << "/" << nb << ")"
<< " Point nbCreated=" << Point::nbCreated
<< " nbDeleted=" << Point::nbDeleted << std::endl;
Expand Down

0 comments on commit 0bc6987

Please sign in to comment.