We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6611aa5 commit b49d81dCopy full SHA for b49d81d
src/proof_rules/unroll.rs
@@ -101,15 +101,16 @@ impl Encoding for UnrollAnnotation {
101
102
let k: u128 = lit_u128(k);
103
104
+ // TODO: these should be warning diagnostics emitted to the user
105
match enc_env.direction {
106
Direction::Down => {
107
if !is_top_lit(terminator) {
- tracing::warn!("Top terminator is not used with down direction!");
108
+ tracing::warn!("Unrolling terminator is not top element (down direction)");
109
}
110
111
Direction::Up => {
112
if !is_bot_lit(terminator) {
- tracing::warn!("Bottom terminator is not used with up direction!");
113
+ tracing::warn!("Unrolling terminator is not bottom element (up direction)");
114
115
116
0 commit comments