vars and project settings -- incorporating lemon tiger changes

This commit is contained in:
sam hatchett
2013-05-23 19:40:56 -04:00
parent 434d78c6ed
commit 2bc8d36a55
3 changed files with 20 additions and 7 deletions

View File

@@ -4,6 +4,9 @@
**
*/
#ifndef HASH_H
#define HASH_H
#define HTMAXSIZE 1999
#define NOTFOUND 0
@@ -22,3 +25,4 @@ int HTfind(HTtable *, char *);
char *HTfindKey(HTtable *, char *);
void HTfree(HTtable *);
#endif

View File

@@ -150,6 +150,7 @@ EXTERN double *D, /* Node actual demand */
*K, /* Link settings */
*Q, /* Link flows */
*R, /* Pipe reaction rate */
*X, /* General purpose array */
*XC; /* General purpose array */
EXTERN double *H; /* Node heads */
EXTERN double *QTankVolumes;