HomeSort by relevance Sort by last modified time
    Searched refs:maxloops (Results 1 - 3 of 3) sorted by null

  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletDynamics/MLCPSolvers/
btLemkeAlgorithm.h 73 btVectorXu solve(unsigned int maxloops = 0);
btLemkeAlgorithm.cpp 63 btVectorXu btLemkeAlgorithm::solve(unsigned int maxloops /* = 0*/)
146 if (maxloops == 0) {
147 maxloops = 100;
148 // maxloops = UINT_MAX; //TODO: not a really nice way, problem is: maxloops should be 2^dim (=1<<dim), but this could exceed UINT_MAX and thus the result would be 0 and therefore the lemke algorithm wouldn't start but probably would find a solution within less then UINT_MAX steps. Therefore this constant is used as a upper border right now...
152 for(steps = 0; steps < maxloops; steps++) {
191 cout << "Number of maximal loops: " << maxloops << endl;
  /external/curl/lib/
transfer.c 398 int maxloops = 100; local
805 } while(data_pending(conn) && maxloops--);
    [all...]

Completed in 2068 milliseconds