The problems … part 2
AGDD/XML files contain ...
Repeated strings. Eg: ID definitions, and subsequent IDREFs.
Functionally computed strings. Eg: waferName = “SCT_” + ( inner ? “inner” : “outer”) + “_wafer”;
Algorithmically computed strings. Eg:
const int N=10; // number of wafer types
for(int n=0; n<N; n++) { // loop over each wafer
// set name for wafer type ...
waferTypeName = “SCT_waferType_” + n;