nikhilgupta10 / GridLAB-D

Other
1 stars 0 forks source link

#6 Make the list of global variables in globals.c the authoritative list and retire the list in globals.h, #57

Closed nikhilgupta10 closed 8 years ago

nikhilgupta10 commented 8 years ago

As-is, the globals in the header file are referenced directly only within the core, and through the global variable declarations. Unsurprisingly, shuffling the variables from the .h to the .c promptly causes all of the references to break.

,

nikhilgupta10 commented 8 years ago

nikhilgupta10 imported these comments from Sourceforge: The user dchassin does not exist anymore. Therefore assigning this to afisher1.

,

This is probably not feasible without requiring all references to global variables in core to be preceded by a GLOBALVAR declaration, global_getvar(), and convert() call. This is not desirable at this time.

,