Changeset d15cd1e in OpenModelica


Ignore:
Timestamp:
2021-01-16T18:28:14+01:00 (3 years ago)
Author:
Francesco Casella <francesco.casella@…>
Children:
7936a40
Parents:
867d52e
Message:

Fixed notification message

File:
1 edited

Legend:

Unmodified
Added
Removed
  • OMCompiler/SimulationRuntime/c/simulation/simulation_runtime.cpp

    r161074e rd15cd1e  
    10021002  if(omc_flag[FLAG_LSS_MIN_SIZE]) {
    10031003    linearSparseSolverMinSize = atoi(omc_flagValue[FLAG_LSS_MIN_SIZE]);
    1004     infoStreamPrint(LOG_STDOUT, 0, "Maximum system size for using linear sparse solver changed to %d", linearSparseSolverMinSize);
     1004    infoStreamPrint(LOG_STDOUT, 0, "Minimum system size for using linear sparse solver changed to %d", linearSparseSolverMinSize);
    10051005  }
    10061006  if(omc_flag[FLAG_NLS_MAX_DENSITY]) {
     
    10101010  if(omc_flag[FLAG_NLS_MIN_SIZE]) {
    10111011    nonlinearSparseSolverMinSize = atoi(omc_flagValue[FLAG_NLS_MIN_SIZE]);
    1012     infoStreamPrint(LOG_STDOUT, 0, "Maximum system size for using non-linear sparse solver changed to %d", nonlinearSparseSolverMinSize);
     1012    infoStreamPrint(LOG_STDOUT, 0, "Minimum system size for using non-linear sparse solver changed to %d", nonlinearSparseSolverMinSize);
    10131013  }
    10141014  if(omc_flag[FLAG_NEWTON_XTOL]) {
Note: See TracChangeset for help on using the changeset viewer.