mirror of
https://github.com/Z3Prover/z3
synced 2025-08-23 11:37:54 +00:00
set clang format off for lp files (#6795)
* adding // clang-format off * set clang-format off at the beginning of lp files * set clang-format off * remove dead code
This commit is contained in:
parent
47fc0cf75c
commit
5ed2a82893
102 changed files with 103 additions and 10 deletions
|
@ -17,6 +17,7 @@ Revision History:
|
|||
|
||||
|
||||
--*/
|
||||
// clang-format off
|
||||
#pragma once
|
||||
|
||||
#include "util/vector.h"
|
||||
|
@ -124,11 +125,6 @@ template <typename T, typename X> unsigned static_matrix<T, X>::lowest_row_in_co
|
|||
return ret;
|
||||
}
|
||||
|
||||
template <typename T, typename X> void static_matrix<T, X>::add_columns_at_the_end(unsigned delta) {
|
||||
for (unsigned i = 0; i < delta; i++)
|
||||
add_column();
|
||||
}
|
||||
|
||||
template <typename T, typename X> void static_matrix<T, X>::forget_last_columns(unsigned how_many_to_forget) {
|
||||
lp_assert(m_columns.size() >= how_many_to_forget);
|
||||
unsigned j = column_count() - 1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue