Skip to content

Commit

Permalink
Fussing
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeltryby committed Oct 9, 2024
1 parent bf4d27a commit c13650c
Showing 1 changed file with 4 additions and 13 deletions.
17 changes: 4 additions & 13 deletions src/solver/report.c
Original file line number Diff line number Diff line change
Expand Up @@ -153,21 +153,12 @@ int report_readOptions(char* tok[], int ntoks)
report_writeWarningMsg(WARN13, tok[t]);
continue;
}



switch ( m )
{
case SUBCATCH:
Subcatch[j].rptFlag = TRUE;
break;

case NODE:
Node[j].rptFlag = TRUE;
break;

case LINK:
Link[j].rptFlag = TRUE;
break;
case SUBCATCH: Subcatch[j].rptFlag = TRUE; break;
case NODE: Node[j].rptFlag = TRUE; break;
case LINK: Link[j].rptFlag = TRUE; break;
}
}
}
Expand Down

0 comments on commit c13650c

Please sign in to comment.