File tree 2 files changed +9
-5
lines changed
2 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 160
160
* \brief Maximum number of hotstart files
161
161
*/
162
162
#define MAXHOTSTARTFILES 10 // largest file size in bytes
163
+
164
+
165
+ /*!
166
+ * \def MAXTIMESERIESCACHESIZE
167
+ * \brief Maximum number of time series rows that can be cached to memory to speed up simulation
168
+ * \TODO Allow users to set this value in the input file and GUI
169
+ */
170
+ #define MAXTIMESERIESCACHESIZE = 10 // maximum number of time series that can be cached
171
+
163
172
/*!
164
173
* \}
165
174
*/
Original file line number Diff line number Diff line change @@ -303,11 +303,6 @@ int table_validate(TTable *table)
303
303
if ( table -> file .file == NULL ) return ERR_TABLE_FILE_OPEN ;
304
304
}
305
305
306
- if (strcomp ("CVG" , table -> ID ))
307
- {
308
- printf ("Test" );
309
- }
310
-
311
306
// --- retrieve the first data entry in the table
312
307
result = table_getFirstEntry (table , & x1 , & y1 );
313
308
You can’t perform that action at this time.
0 commit comments