From: Tim King Date: Wed, 27 Jun 2012 20:56:04 +0000 (+0000) Subject: Improved debugging output. X-Git-Tag: cvc5-1.0.0~7960 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=82543ccbc0cf3dadd39cfdb295c8848f8e863a54;p=cvc5.git Improved debugging output. --- diff --git a/src/theory/arith/matrix.h b/src/theory/arith/matrix.h index 5becdc9fb..f0e17f8a4 100644 --- a/src/theory/arith/matrix.h +++ b/src/theory/arith/matrix.h @@ -853,6 +853,14 @@ public: return d_basic2RowIndex.isKey(v); } + void debugPrintIsBasic(ArithVar v) const { + if(isBasic(v)){ + Warning() << v << " is basic." << std::endl; + }else{ + Warning() << v << " is non-basic." << std::endl; + } + } + BasicIterator beginBasic() const { return d_basic2RowIndex.begin(); }