mirror of
https://github.com/powdr-labs/powdr.git
synced 2026-05-13 03:00:26 -04:00
Identity check on row zero is not considered fatal.
This commit is contained in:
@@ -188,9 +188,11 @@ where
|
||||
break;
|
||||
}
|
||||
}
|
||||
if identity_failed && self.next.iter().any(|v| v.is_none()) {
|
||||
// Identity check failure on the first row is not fatal. We will proceed with
|
||||
// "unknown", report zero and re-check the wrap-around against the zero values at the end.
|
||||
if identity_failed && next_row != 0 {
|
||||
eprintln!(
|
||||
"\nError: Row {next_row}: Unable to derive values for committed polynomials: {}\n",
|
||||
"\nError: Row {next_row}: Identity check failer or unable to derive values for committed polynomials: {}\n",
|
||||
self.next
|
||||
.iter()
|
||||
.enumerate()
|
||||
|
||||
Reference in New Issue
Block a user