mirror of
https://github.com/powdr-labs/powdr.git
synced 2026-04-20 03:03:25 -04:00
Format affine expression in error.
This commit is contained in:
@@ -66,7 +66,12 @@ where
|
||||
.iter()
|
||||
.filter_map(|(i, c)| (!c.is_zero()).then_some((*i, c)))
|
||||
}
|
||||
}
|
||||
|
||||
impl<'x, K> AffineExpression<K>
|
||||
where
|
||||
K: Copy + Ord + Display + 'x,
|
||||
{
|
||||
/// If the affine expression has only a single variable (with nonzero coefficient),
|
||||
/// returns the index of the variable and the assignment that evaluates the
|
||||
/// affine expression to zero.
|
||||
@@ -115,7 +120,7 @@ where
|
||||
// Try to solve directly.
|
||||
match self.solve() {
|
||||
Ok(value) if value.is_complete() => return Ok(value),
|
||||
Err(()) => return Err(ConstraintUnsatisfiable(String::new())),
|
||||
Err(()) => return Err(ConstraintUnsatisfiable(self.to_string())),
|
||||
Ok(value) => {
|
||||
// sanity check that we are not ignoring anything useful here
|
||||
assert!(value.constraints.is_empty());
|
||||
|
||||
Reference in New Issue
Block a user