Skip to content

Commit

Permalink
Fixing small bug with default parameter settings
Browse files Browse the repository at this point in the history
  • Loading branch information
tkralphs committed Nov 20, 2024
1 parent 0b5f6a4 commit fd90955
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/MibSModel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4000,12 +4000,12 @@ MibSModel::adjustParameters()
switch (MibSPar_->entry(MibSParams::ISICGenStrategy)) {
case MibSISICGenStrategyNotSet:
MibSPar()->setEntry(MibSParams::ISICGenStrategy, MibSISICGenStrategyLInt);
case MibSISICGenStrategyXYInt:
MibSPar()->setEntry(MibSParams::solveSecondLevelWhenXYVarsInt, 1);
break;
case MibSISICGenStrategyLInt:
MibSPar()->setEntry(MibSParams::solveSecondLevelWhenLVarsInt, 1);
break;
case MibSISICGenStrategyXYInt:
MibSPar()->setEntry(MibSParams::solveSecondLevelWhenXYVarsInt, 1);
break;
case MibSISICGenStrategyYInt:
MibSPar()->setEntry(MibSParams::solveSecondLevelWhenYVarsInt, 1);
break;
Expand Down

0 comments on commit fd90955

Please sign in to comment.