1 |
|
/****************************************************************************** |
2 |
|
* Top contributors (to current version): |
3 |
|
* Tim King |
4 |
|
* |
5 |
|
* This file is part of the cvc5 project. |
6 |
|
* |
7 |
|
* Copyright (c) 2009-2021 by the authors listed in the file AUTHORS |
8 |
|
* in the top-level source directory and their institutional affiliations. |
9 |
|
* All rights reserved. See the file COPYING in the top-level source |
10 |
|
* directory for licensing information. |
11 |
|
* **************************************************************************** |
12 |
|
* |
13 |
|
* Sparse matrix implementations for different types. |
14 |
|
*/ |
15 |
|
|
16 |
|
#include "theory/arith/matrix.h" |
17 |
|
|
18 |
|
using namespace std; |
19 |
|
namespace cvc5 { |
20 |
|
namespace theory { |
21 |
|
namespace arith { |
22 |
|
|
23 |
216013 |
void NoEffectCCCB::update(RowIndex ridx, ArithVar nb, int oldSgn, int currSgn) {} |
24 |
|
void NoEffectCCCB::multiplyRow(RowIndex ridx, int sgn){} |
25 |
|
bool NoEffectCCCB::canUseRow(RowIndex ridx) const { return false; } |
26 |
|
|
27 |
|
} // namespace arith |
28 |
|
} // namespace theory |
29 |
22755 |
} // namespace cvc5 |