Changeset 51abbe


Ignore:
Timestamp:
Aug 8, 2009, 7:22:28 PM (16 years ago)
Author:
Frederik Heber <heber@…>
Children:
0cf171
Parents:
0ee99dc
Message:

ParseCommandLineOptions(), NonConvex tesselation is now clocked.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • molecuilder/src/builder.cpp

    r0ee99dc r51abbe  
    16251625                cout << Verbose(0) << "Evaluating non-convex envelope.";
    16261626                cout << Verbose(1) << "Using rolling ball of radius " << atof(argv[argptr]) << " and storing tecplot data in " << argv[argptr+1] << "." << endl;
     1627                start = clock();
    16271628                LinkedCell LCList(mol, atof(argv[argptr])*2.);
    16281629                Find_non_convex_border((ofstream *)&cout, mol, &LCList, argv[argptr+1], atof(argv[argptr]));
    16291630                //FindDistributionOfEllipsoids((ofstream *)&cout, &T, &LCList, N, number, filename.c_str());
     1631                end = clock();
     1632                cout << Verbose(0) << "Clocks for this operation: " << (end-start) << ", time: " << ((double)(end-start)/CLOCKS_PER_SEC) << "s." << endl;
    16301633                argptr+=2;
    16311634              }
Note: See TracChangeset for help on using the changeset viewer.