Changeset 11 for cpp/f8-to-f1/conv_f8tof1.cpp
- Timestamp:
- 06/22/09 22:42:54 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/f8-to-f1/conv_f8tof1.cpp
r9 r11 696 696 cout << "&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&" << endl; 697 697 #endif 698 //final check 699 for (map<string, Production*>::iterator prodIter = lsys->productions.begin(); 700 prodIter != lsys->productions.end(); prodIter++) { 701 for (vector<SubProduction>::iterator subProdIter = prodIter->second->subproductions.begin(); 702 subProdIter != prodIter->second->subproductions.end(); subProdIter++) { 703 SubProduction subProduction = *subProdIter; 704 for (vector<ActionStrP>::iterator actionIter = subProduction.actions.begin(); 705 actionIter != subProduction.actions.end(); actionIter++) { 706 if ((*actionIter).action == NULL) { 707 subProduction.actions.erase(actionIter); 708 } 709 } 710 } 711 } 698 712 #if CONV_DEBUG > 0 699 713 cout << "createLsystem() end" << endl;
Note: See TracChangeset
for help on using the changeset viewer.