Skip to content

Commit 017df84

Browse files
committed
WIP API and bindings unit testing; cleaning up; docs, csv support #204, #162, #163, #184, #180, #165, #31
1 parent d401acf commit 017df84

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

src/solver/consts.h

+9
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,15 @@
160160
* \brief Maximum number of hotstart files
161161
*/
162162
#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+
163172
/*!
164173
* \}
165174
*/

src/solver/table.c

-5
Original file line numberDiff line numberDiff line change
@@ -303,11 +303,6 @@ int table_validate(TTable *table)
303303
if ( table->file.file == NULL ) return ERR_TABLE_FILE_OPEN;
304304
}
305305

306-
if (strcomp("CVG", table->ID))
307-
{
308-
printf("Test");
309-
}
310-
311306
// --- retrieve the first data entry in the table
312307
result = table_getFirstEntry(table, &x1, &y1);
313308

0 commit comments

Comments
 (0)