Skip to content

Commit

Permalink
WIP API and bindings unit testing; cleaning up; docs, csv support #204,
Browse files Browse the repository at this point in the history
  • Loading branch information
cbuahin committed Jan 24, 2025
1 parent d401acf commit 017df84
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
9 changes: 9 additions & 0 deletions src/solver/consts.h
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,15 @@
* \brief Maximum number of hotstart files
*/
#define MAXHOTSTARTFILES 10 // largest file size in bytes


/*!
* \def MAXTIMESERIESCACHESIZE
* \brief Maximum number of time series rows that can be cached to memory to speed up simulation
* \TODO Allow users to set this value in the input file and GUI
*/
#define MAXTIMESERIESCACHESIZE = 10 // maximum number of time series that can be cached

/*!
* \}
*/
Expand Down
5 changes: 0 additions & 5 deletions src/solver/table.c
Original file line number Diff line number Diff line change
Expand Up @@ -303,11 +303,6 @@ int table_validate(TTable *table)
if ( table->file.file == NULL ) return ERR_TABLE_FILE_OPEN;
}

if (strcomp("CVG", table->ID))
{
printf("Test");
}

// --- retrieve the first data entry in the table
result = table_getFirstEntry(table, &x1, &y1);

Expand Down

0 comments on commit 017df84

Please sign in to comment.