Skip to content

Commit

Permalink
HOTFIX change condition to constraint in context options (#3947)
Browse files Browse the repository at this point in the history
The context string was changed in prior PR #3919 but the configuration
options were not, leading to incomplete data for abort analysis..
  • Loading branch information
jberthold authored Jun 18, 2024
1 parent 6a708bd commit e845c00
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions booster/library/Booster/CLOptions.hs
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ levelToContext =
( "Rewrite"
,
[ [ctxt| booster|kore>rewrite*,success|failure|abort|detail |]
, [ctxt| booster|kore>rewrite*,match|definedness|condition,failure|abort |]
, [ctxt| booster|kore>rewrite*,match|definedness|constraint,failure|abort |]
]
)
,
Expand All @@ -277,7 +277,7 @@ levelToContext =
( "Aborts"
,
[ [ctxt| booster>rewrite*,detail. |]
, [ctxt| booster>rewrite*,match|definedness|condition,abort. |]
, [ctxt| booster>rewrite*,match|definedness|constraint,abort. |]
, [ctxt| proxy. |]
, [ctxt| proxy,abort. |]
, [ctxt| booster>failure,abort |]
Expand Down

0 comments on commit e845c00

Please sign in to comment.