Skip to content

Commit

Permalink
refs #2244: Fix comment on uMin and uMax
Browse files Browse the repository at this point in the history
  • Loading branch information
beutlich committed Apr 25, 2017
1 parent b44b5e2 commit 8dde56e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Modelica/Resources/C-Sources/ModelicaStandardTables.h
Original file line number Diff line number Diff line change
Expand Up @@ -350,11 +350,11 @@ MODELICA_EXPORT void ModelicaStandardTables_CombiTable2D_close(void* tableID);

MODELICA_EXPORT void ModelicaStandardTables_CombiTable2D_minimumAbscissa(void* tableID,
_Inout_ double* uMin);
/* Get minimum abscissa defined in table (= table[2,1] and table[end,1]) */
/* Get minimum abscissa defined in table (= table[2,1] and table[1,2]) */

MODELICA_EXPORT void ModelicaStandardTables_CombiTable2D_maximumAbscissa(void* tableID,
_Inout_ double* uMax);
/* Get maximum abscissa defined in table (= table[1,2] and table[1,end]) */
/* Get maximum abscissa defined in table (= table[end,1] and table[1,end]) */

MODELICA_EXPORT double ModelicaStandardTables_CombiTable2D_getValue(void* tableID, double u1,
double u2);
Expand Down

0 comments on commit 8dde56e

Please sign in to comment.