1
0
Fork 0

Debugging output tweak.

This commit is contained in:
curt 2003-09-03 22:46:04 +00:00
parent 2c45b3ce5d
commit 8f5bc3579a

View file

@ -473,7 +473,6 @@ void TGMatch::write_shared( TGConstruct& c ) {
cout << "shared data will be written to " << file << endl; cout << "shared data will be written to " << file << endl;
#if 0
cout << "FLAGS" << endl; cout << "FLAGS" << endl;
cout << "=====" << endl; cout << "=====" << endl;
cout << "sw_flag = " << sw_flag << endl; cout << "sw_flag = " << sw_flag << endl;
@ -484,7 +483,6 @@ void TGMatch::write_shared( TGConstruct& c ) {
cout << "south_flag = " << south_flag << endl; cout << "south_flag = " << south_flag << endl;
cout << "east_flag = " << east_flag << endl; cout << "east_flag = " << east_flag << endl;
cout << "west_flag = " << west_flag << endl; cout << "west_flag = " << west_flag << endl;
#endif
FILE *fp; FILE *fp;
if ( (fp = fopen( file.c_str(), "w" )) == NULL ) { if ( (fp = fopen( file.c_str(), "w" )) == NULL ) {
@ -667,7 +665,9 @@ void TGMatch::assemble_tile( TGConstruct& c ) {
int index; int index;
// cout << "Total north nodes = " << north_nodes.size() << endl;
for ( i = 0; i < (int)north_nodes.size(); ++i ) { for ( i = 0; i < (int)north_nodes.size(); ++i ) {
// cout << "adding north node " << north_nodes[i] << endl;
index = new_nodes.unique_add( north_nodes[i] ); index = new_nodes.unique_add( north_nodes[i] );
insert_normal( new_normals, north_normals[i], index ); insert_normal( new_normals, north_normals[i], index );
} }