Skip to content

Commit

Permalink
Shared: Use strictconcat in model generator printing
Browse files Browse the repository at this point in the history
  • Loading branch information
paldepind committed Jan 29, 2025
1 parent 7055095 commit 9d87f26
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@ module ModelPrintingImpl<ModelPrintingLangSig Lang> {
* Computes the first columns for MaD rows used for summaries, sources and sinks.
*/
private string asPartialModel(Lang::Callable api) {
result = concat(int i | | Lang::partialModelRow(api, i), ";" order by i) + ";"
result = strictconcat(int i | | Lang::partialModelRow(api, i), ";" order by i) + ";"
}

/**
* Computes the first columns for neutral MaD rows.
*/
private string asPartialNeutralModel(Printing::SummaryApi api) {
result = concat(int i | | Lang::partialNeutralModelRow(api, i), ";" order by i) + ";"
result = strictconcat(int i | | Lang::partialNeutralModelRow(api, i), ";" order by i) + ";"
}

/**
Expand Down

0 comments on commit 9d87f26

Please sign in to comment.