Common subdirectories of . and /gaul/s1/usr/faculty/wade/Courses/cs471/Trafsim/2000-Groups/G06:
	Data
	Docs
	Src
Common subdirectories of ./Src and /gaul/s1/usr/faculty/wade/Courses/cs471/Trafsim/2000-Groups/G06/Src:
	expat
	include
	src
Common subdirectories of ./Src/expat and /gaul/s1/usr/faculty/wade/Courses/cs471/Trafsim/2000-Groups/G06/Src/expat:
	bin
	gennmtab
	lib
	sample
	xmlparse
	xmltok
	xmlwf


Nov 14 00:26 2001  diff -bitw -l -r ./Src/expat/xmlparse/xmlparse.c /gaul/s1/usr/faculty/wade/Courses/cs471/Trafsim/2000-Groups/G06/Src/expat/xmlparse/xmlparse.c Page 1


501c501
<   atts = (ATTRIBUTE *) malloc(attsSize * sizeof(ATTRIBUTE));
---
>   atts = malloc(attsSize * sizeof(ATTRIBUTE));
503c503
<   dataBuf = (XML_Char *) malloc(INIT_DATA_BUF_SIZE * sizeof(XML_Char));
---
>   dataBuf = malloc(INIT_DATA_BUF_SIZE * sizeof(XML_Char));
602c602
<   enum XML_ParamEntityParsing oldParamEntityParsing = paramEntityParsing;
---
>   int oldParamEntityParsing = paramEntityParsing;
912c912
<         buffer = (char *) buffer == 0 ? (char *) malloc(len * 2) : (char *) realloc(buffer, len * 2);
---
>         buffer = buffer == 0 ? malloc(len * 2) : realloc(buffer, len * 2);
972c972
<       newBuf = (char *) malloc(bufferSize);
---
>       newBuf = malloc(bufferSize);
1329c1329
<           tag = (TAG *) malloc(sizeof(TAG));
---
>           tag = malloc(sizeof(TAG));
1332c1332
<           tag->buf = (char *) malloc(INIT_TAG_BUF_SIZE);
---
>           tag->buf = malloc(INIT_TAG_BUF_SIZE);
1349c1349
<             tag->buf = (char *) realloc(tag->buf, bufSize);
---
>             tag->buf = realloc(tag->buf, bufSize);
1376c1376
<             tag->buf = (char *) realloc(tag->buf, bufSize);
---
>             tag->buf = realloc(tag->buf, bufSize);
1639c1639
<     atts = (ATTRIBUTE *) realloc((void *)atts, attsSize * sizeof(ATTRIBUTE));
---
>     atts = realloc((void *)atts, attsSize * sizeof(ATTRIBUTE));
1812c1812
<     XML_Char *uri = (char *) malloc((n + EXPAND_SPARE) * sizeof(XML_Char));
---
>     XML_Char *uri = malloc((n + EXPAND_SPARE) * sizeof(XML_Char));
1840c1840
<       b->uri = (XML_Char *) realloc(b->uri, sizeof(XML_Char) * (len + EXPAND_SPARE));
---
>       b->uri = realloc(b->uri, sizeof(XML_Char) * (len + EXPAND_SPARE));
1848c1848
<     b = (BINDING *) malloc(sizeof(BINDING));
---
>     b = malloc(sizeof(BINDING));
1851c1851
<     b->uri = (XML_Char *) malloc(sizeof(XML_Char) * (len + EXPAND_SPARE));
---
>     b->uri = malloc(sizeof(XML_Char) * (len + EXPAND_SPARE));







Nov 14 00:26 2001  diff -bitw -l -r ./Src/expat/xmlparse/xmlparse.c /gaul/s1/usr/faculty/wade/Courses/cs471/Trafsim/2000-Groups/G06/Src/expat/xmlparse/xmlparse.c Page 2


2620c2620
<           groupConnector = (char *) realloc(groupConnector, groupSize *= 2);
---
>           groupConnector = realloc(groupConnector, groupSize *= 2);
2622c2622
<           groupConnector = (char *) malloc(groupSize = 32);
---
>           groupConnector = malloc(groupSize = 32);
3178c3178
<       type->defaultAtts = (DEFAULT_ATTRIBUTE *) malloc(type->allocDefaultAtts*sizeof(DEFAULT_ATTRIBUTE));
---
>       type->defaultAtts = malloc(type->allocDefaultAtts*sizeof(DEFAULT_ATTRIBUTE));
3182c3182
<       type->defaultAtts = (DEFAULT_ATTRIBUTE *) realloc(type->defaultAtts,
---
>       type->defaultAtts = realloc(type->defaultAtts,
3674c3674
<     table->v = (NAMED **) calloc(INIT_SIZE, sizeof(NAMED *));
---
>     table->v = calloc(INIT_SIZE, sizeof(NAMED *));
3694c3694
<       NAMED **newV = (NAMED **) calloc(newSize, sizeof(NAMED *));
---
>       NAMED **newV = calloc(newSize, sizeof(NAMED *));
3716c3716
<   table->v[i] = (NAMED *) calloc(1, createSize);
---
>   table->v[i] = calloc(1, createSize);
3897c3897
<     pool->blocks = (BLOCK *) realloc(pool->blocks, offsetof(BLOCK, s) + blockSize * sizeof(XML_Char));
---
>     pool->blocks = realloc(pool->blocks, offsetof(BLOCK, s) + blockSize * sizeof(XML_Char));
3912c3912
<     tem = (BLOCK *) malloc(offsetof(BLOCK, s) + blockSize * sizeof(XML_Char));
---
>     tem = malloc(offsetof(BLOCK, s) + blockSize * sizeof(XML_Char));

























Only in ./Src/expat/xmlparse:
	xmlparse.o

Binary files which differ in ./Src/expat/xmlparse and /gaul/s1/usr/faculty/wade/Courses/cs471/Trafsim/2000-Groups/G06/Src/expat/xmlparse:
	libexpat.a


Nov 14 00:26 2001  diff -bitw -l -r ./Src/expat/xmltok/xmltok.c /gaul/s1/usr/faculty/wade/Courses/cs471/Trafsim/2000-Groups/G06/Src/expat/xmltok/xmltok.c Page 1


1273c1273
<   struct unknown_encoding *e = (unknown_encoding *) mem;
---
>   struct unknown_encoding *e = mem;

























































Only in ./Src/expat/xmltok:
	xmlrole.o
	xmltok.o


Nov 14 00:26 2001  diff -bitw -l -r ./Src/expat/xmlwf/unixfilemap.c /gaul/s1/usr/faculty/wade/Courses/cs471/Trafsim/2000-Groups/G06/Src/expat/xmlwf/unixfilemap.c Page 1


5c5
< #include 
---
>



























































Nov 14 00:26 2001  diff -bitw -l -r ./Src/expat/xmlwf/xmlfile.c /gaul/s1/usr/faculty/wade/Courses/cs471/Trafsim/2000-Groups/G06/Src/expat/xmlwf/xmlfile.c Page 1


5c5
< #include 
---
>
68c68
<   if (!XML_Parse(parser, (char *) data, size, 1)) {
---
>   if (!XML_Parse(parser, data, size, 1)) {
147c147
<     char *buf = (char *) XML_GetBuffer(parser, READ_SIZE);
---
>     char *buf = XML_GetBuffer(parser, READ_SIZE);



















































Nov 14 00:26 2001  diff -bitw -l -r ./Src/expat/xmlwf/xmlwf.c /gaul/s1/usr/faculty/wade/Courses/cs471/Trafsim/2000-Groups/G06/Src/expat/xmlwf/xmlwf.c Page 1


26c26
<   FILE *fp = (FILE *) userData;
---
>   FILE *fp = userData;
118c118
<   FILE *fp = (FILE *) userData;
---
>   FILE *fp = userData;
139c139
<   FILE *fp = (FILE *) userData;
---
>   FILE *fp = userData;
162c162
<   FILE *fp = (FILE *) userData;
---
>   FILE *fp = userData;
207c207
<   FILE *fp = (FILE *) userData;
---
>   FILE *fp = userData;
225c225
<   FILE *fp = (FILE *) userData;
---
>   FILE *fp = userData;
275c275
<   FILE *fp = (FILE *) XML_GetUserData(parser);
---
>   FILE *fp = XML_GetUserData(parser);
285,286c285,286
<     ftprintf( (FILE *) XML_GetUserData(parser), T(" uri=\"%s\""), uri);
<   ftprintf( (FILE *) XML_GetUserData(parser),
---
>     ftprintf(XML_GetUserData(parser), T(" uri=\"%s\""), uri);
>   ftprintf(XML_GetUserData(parser),
297c297
<   fputts(T("\n"), (FILE *) XML_GetUserData(parser));
---
>   fputts(T("\n"), XML_GetUserData(parser));
303c303
<   fputts(T("\n"), (FILE *) XML_GetUserData(parser));
---
>   fputts(T("\n"), XML_GetUserData(parser));
309c309
<   FILE *fp = (FILE *) XML_GetUserData(parser);
---
>   FILE *fp = XML_GetUserData(parser);
342c342
<   FILE *fp = (FILE *) XML_GetUserData(parser);
---
>   FILE *fp = XML_GetUserData(parser);
351c351
<   FILE *fp =  (FILE *) XML_GetUserData(parser);
---
>   FILE *fp = XML_GetUserData(parser);
362c362
<   FILE *fp =  (FILE *) XML_GetUserData(parser);







Nov 14 00:26 2001  diff -bitw -l -r ./Src/expat/xmlwf/xmlwf.c /gaul/s1/usr/faculty/wade/Courses/cs471/Trafsim/2000-Groups/G06/Src/expat/xmlwf/xmlwf.c Page 2


---
>   FILE *fp = XML_GetUserData(parser);
373c373
<   FILE *fp =  (FILE *) XML_GetUserData(parser);
---
>   FILE *fp = XML_GetUserData(parser);
382c382
<   FILE *fp =  (FILE *) XML_GetUserData(parser);
---
>   FILE *fp = XML_GetUserData(parser);
391c391
<   FILE *fp =  (FILE *) XML_GetUserData(parser);
---
>   FILE *fp = XML_GetUserData(parser);
402c402
<   FILE *fp =  (FILE *) XML_GetUserData(parser);
---
>   FILE *fp = XML_GetUserData(parser);
411c411
<   FILE *fp =  (FILE *) XML_GetUserData(parser);
---
>   FILE *fp = XML_GetUserData(parser);
425c425
<   FILE *fp =  (FILE *) XML_GetUserData(parser);
---
>   FILE *fp = XML_GetUserData(parser);
444c444
<   FILE *fp =  (FILE *) XML_GetUserData(parser);
---
>   FILE *fp = XML_GetUserData(parser);
465c465
<   FILE *fp =  (FILE *) XML_GetUserData(parser);
---
>   FILE *fp = XML_GetUserData(parser);
482c482
<   FILE *fp =  (FILE *) XML_GetUserData(parser);
---
>   FILE *fp = XML_GetUserData(parser);
495c495
<   FILE *fp =  (FILE *) XML_GetUserData(parser);
---
>   FILE *fp = XML_GetUserData(parser);
511c511
<   FILE *fp =  (FILE *) XML_GetUserData(parser);
---
>   FILE *fp = XML_GetUserData(parser);
585c585
<   enum XML_ParamEntityParsing paramEntityParsing = XML_PARAM_ENTITY_PARSING_NEVER;
---
>   int paramEntityParsing = XML_PARAM_ENTITY_PARSING_NEVER;
703c703
<       outName = (XML_Char *) malloc((tcslen(outputDir) + tcslen(file) + 2) * sizeof(XML_Char));
---
>       outName = malloc((tcslen(outputDir) + tcslen(file) + 2) * sizeof(XML_Char));







Only in ./Src/expat/xmlwf:
	codepage.o
	unixfilemap.o
	xmlfile.o
	xmlwf.o

Binary files which differ in ./Src/expat/xmlwf and /gaul/s1/usr/faculty/wade/Courses/cs471/Trafsim/2000-Groups/G06/Src/expat/xmlwf:
	xmlwf


Nov 14 00:26 2001  diff -bitw -l -r ./Src/include/AbstractIntersectionController.h /gaul/s1/usr/faculty/wade/Courses/cs471/Trafsim/2000-Groups/G06/Src/include/AbstractIntersectionController.h Page 1


20c20
<   virtual void transportationArtifactChanged (TransportationArtifact); //changed or not
---
>   virtual transportationArtifactChanged (TransportationArtifact); //changed or not
23c23
<   virtual void setID(IDType ID);
---
>   virtual setID(IDType ID);
25,26c25,26
<   virtual void setLocation(AICLocationType location);
<   virtual void update();                                          //has it changed or not
---
>   virtual setLocation(AICLocationType location);
>   virtual update();                                          //has it changed or not

















































Nov 14 00:26 2001  diff -bitw -l -r ./Src/include/City.h /gaul/s1/usr/faculty/wade/Courses/cs471/Trafsim/2000-Groups/G06/Src/include/City.h Page 1


8,9c8,9
< const int DEFAULTTIMESLICE = 100;
< const int DEFAULTNUMOFSLICES = 100;
---
> const DEFAULTTIMESLICE = 100;
> const DEFAULTNUMOFSLICES = 100;
20,21c20,21
<   virtual void createOutput(String Filename);   // write out the city info to a file
<   virtual void readInput(String Filename);              // read in city info to a file
---
>   virtual createOutput(String Filename);        // write out the city info to a file
>   virtual readInput(String Filename);           // read in city info to a file



















































Nov 14 00:26 2001  diff -bitw -l -r ./Src/include/IntersectionController.h /gaul/s1/usr/faculty/wade/Courses/cs471/Trafsim/2000-Groups/G06/Src/include/IntersectionController.h Page 1


27c27
<     virtual void transportationArtifactChanged (TransportationArtifact);
---
>     virtual transportationArtifactChanged (TransportationArtifact);
29c29
<     virtual void setID(IDType ID);
---
>     virtual setID(IDType ID);
31c31
<     virtual void setLocation(AICLocationType location);
---
>     virtual setLocation(AICLocationType location);
33,34c33,34
<     virtual void setBLocation(AICLocationType location);
<     virtual void update();
---
>     virtual setBLocation(AICLocationType location);
>     virtual update();
37c37
<     void updateTrafficLight();
---
>     updateTrafficLight();
39c39
<     void setIntersection(Intersection*);
---
>     setIntersection(Intersection*);





































Nov 14 00:26 2001  diff -bitw -l -r ./Src/include/IntersectionElement.h /gaul/s1/usr/faculty/wade/Courses/cs471/Trafsim/2000-Groups/G06/Src/include/IntersectionElement.h Page 1


16,17c16,17
<   void setTrafficLight(TrafficLight* tl);
<   void setRoadSegment(RoadSegment *rs);
---
>   setTrafficLight(TrafficLight* tl);
>   setRoadSegment(RoadSegment *rs);

























































Nov 14 00:26 2001  diff -bitw -l -r ./Src/include/OurCity.h /gaul/s1/usr/faculty/wade/Courses/cs471/Trafsim/2000-Groups/G06/Src/include/OurCity.h Page 1


21,22c21,22
<   virtual void createOutput(String Filename);   // write out the city info to a file
<   virtual void readInput(String Filename);              // read in city info to a file
---
>   virtual createOutput(String Filename);        // write out the city info to a file
>   virtual readInput(String Filename);           // read in city info to a file

























































Nov 14 00:26 2001  diff -bitw -l -r ./Src/src/AbstractIntersectionController.cpp /gaul/s1/usr/faculty/wade/Courses/cs471/Trafsim/2000-Groups/G06/Src/src/AbstractIntersectionController.cpp Page 1


19c19
< void AbstractIntersectionController::transportationArtifactChanged (TransportationArtifact) {
---
> AbstractIntersectionController::transportationArtifactChanged (TransportationArtifact) {
25c25
< void AbstractIntersectionController::setID(IDType ID) {
---
> AbstractIntersectionController::setID(IDType ID) {
31c31
< void AbstractIntersectionController::setLocation(AICLocationType location){
---
> AbstractIntersectionController::setLocation(AICLocationType location){
34c34
< void AbstractIntersectionController::update() {
---
> AbstractIntersectionController::update() {















































Nov 14 00:26 2001  diff -bitw -l -r ./Src/src/City.cpp /gaul/s1/usr/faculty/wade/Courses/cs471/Trafsim/2000-Groups/G06/Src/src/City.cpp Page 1


21c21
< void City::createOutput(String Filename) {      // write out the city info to a file
---
> City::createOutput(String Filename) {   // write out the city info to a file
24c24
< void City::readInput(String Filename) { // read in city info to a file
---
> City::readInput(String Filename) {      // read in city info to a file























































Nov 14 00:26 2001  diff -bitw -l -r ./Src/src/IntersectionController.cpp /gaul/s1/usr/faculty/wade/Courses/cs471/Trafsim/2000-Groups/G06/Src/src/IntersectionController.cpp Page 1


20c20
< void IntersectionController::transportationArtifactChanged (TransportationArtifact){
---
> IntersectionController::transportationArtifactChanged (TransportationArtifact){
28c28
< void IntersectionController::setID(IDType id){
---
> IntersectionController::setID(IDType id){
37c37
< void IntersectionController::setLocation(AICLocationType templocation){
---
> IntersectionController::setLocation(AICLocationType templocation){
46c46
< void IntersectionController::setBLocation(AICLocationType templocation){
---
> IntersectionController::setBLocation(AICLocationType templocation){
51c51
< void IntersectionController::update(){
---
> IntersectionController::update(){
80c80
< void IntersectionController::updateTrafficLight(){
---
> IntersectionController::updateTrafficLight(){
90c90
< void IntersectionController::setIntersection(Intersection * i) {
---
> IntersectionController::setIntersection(Intersection * i) {



































Nov 14 00:26 2001  diff -bitw -l -r ./Src/src/IntersectionElement.cpp /gaul/s1/usr/faculty/wade/Courses/cs471/Trafsim/2000-Groups/G06/Src/src/IntersectionElement.cpp Page 1


29c29
< void IntersectionElement::setTrafficLight(TrafficLight* tl)
---
> IntersectionElement::setTrafficLight(TrafficLight* tl)
34c34
< void IntersectionElement::setRoadSegment(RoadSegment *rs)
---
> IntersectionElement::setRoadSegment(RoadSegment *rs)























































Nov 14 00:26 2001  diff -bitw -l -r ./Src/src/OurCity.cpp /gaul/s1/usr/faculty/wade/Courses/cs471/Trafsim/2000-Groups/G06/Src/src/OurCity.cpp Page 1


31c31
< void OurCity::createOutput(String Filename) {
---
> OurCity::createOutput(String Filename) {
152c152
< void OurCity::readInput(String Filename) {      // read in city info to a file
---
> OurCity::readInput(String Filename) {   // read in city info to a file























































Nov 14 00:26 2001  diff -bitw -l -r ./Src/src/ParserAdapter.cpp /gaul/s1/usr/faculty/wade/Courses/cs471/Trafsim/2000-Groups/G06/Src/src/ParserAdapter.cpp Page 1


387c387
<   int *depthPtr = (int *) userData;
---
>   int *depthPtr = userData;
648c648
<   int *depthPtr = (int *) userData;
---
>   int *depthPtr = userData;
656c656
< parser = (XML_Parser *) XML_ParserCreate(NULL);
---
> parser = XML_ParserCreate(NULL);

















































Only in /gaul/s1/usr/faculty/wade/Courses/cs471/Trafsim/2000-Groups/G06/Src/src:
	ddd


    Source: geocities.com/terry_chim/school/471a3

               ( geocities.com/terry_chim/school)                   ( geocities.com/terry_chim)