Ignore:
Timestamp:
Jul 9, 2009, 12:02:46 PM (16 years ago)
Author:
Frederik Heber <heber@…>
Children:
a8c8ba
Parents:
438506
Message:

Lots of changes to the number of output messages.

As the finding of the non-convex boundary is done, we have cut down a lot on the output created by the procedure. Most of the INFO messages are commented out and all of the REJECTs and Current Candidates and so on as well. There still remains all that is necessary, triangles found, the sequence of accepted candidates, the number of baselines not connected to two triangles ...

File:
1 edited

Legend:

Unmodified
Added
Removed
  • molecuilder/src/linkedcell.cpp

    r438506 r8bbe43  
    5959
    6060        // 3. allocate the lists
    61         cout << Verbose(2) << "Allocating cells ... " << endl;
     61        cout << Verbose(2) << "Allocating cells ... ";
    6262        if (LC != NULL) {
    6363                cout << Verbose(1) << "ERROR: Linked Cell list is already allocated, I do nothing." << endl;
     
    6868                LC [index].clear();
    6969        }
     70        cout << "done."  << endl;
    7071
    7172        // 4. put each atom into its respective cell
     73  cout << Verbose(2) << "Filling cells ... ";
    7274        Walker = mol->start;
    7375        while (Walker->next != mol->end) {
     
    7880                index = n[0] * N[1] * N[2] + n[1] * N[2] + n[2];
    7981                LC[index].push_back(Walker);
    80                 cout << Verbose(2) << *Walker << " goes into cell " << n[0] << ", " << n[1] << ", " << n[2] << " with No. " << index << "." << endl;
     82                //cout << Verbose(2) << *Walker << " goes into cell " << n[0] << ", " << n[1] << ", " << n[2] << " with No. " << index << "." << endl;
    8183        }
     84  cout << "done."  << endl;
    8285        cout << Verbose(1) << "End of LinkedCell" << endl;
    8386};
Note: See TracChangeset for help on using the changeset viewer.