Passing open and close test

This commit is contained in:
Michael Tryby
2019-04-18 16:16:02 -04:00
parent bf519fdd94
commit 901a802f21
4 changed files with 35 additions and 12 deletions

View File

@@ -339,14 +339,14 @@ typedef struct // Curve Object
double *Y; // y-values
} Scurve;
struct Sdemand // Demand List Item
{
double Base; // baseline demand
int Pat; // pattern index
char *Name; // demand category name
struct Sdemand *next; // next demand list item
};
typedef struct Sdemand *Pdemand; // Pointer to demand list
//struct Sdemand // Demand List Item
//{
// double Base; // baseline demand
// int Pat; // pattern index
// char *Name; // demand category name
// struct Sdemand *next; // next demand list item
//};
//typedef struct Sdemand *Pdemand; // Pointer to demand list
typedef struct // Energy Usage Object
{