Skip to content

Commit

Permalink
ADD and SUB implemented #95
Browse files Browse the repository at this point in the history
  • Loading branch information
ETatuzova committed Nov 18, 2024
1 parent 992b095 commit 09729f9
Show file tree
Hide file tree
Showing 5 changed files with 348 additions and 98 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ namespace nil {

void allocate(TYPE &C, size_t col, size_t row, column_type t) {
if (is_allocated(col, row, t)) {
BOOST_LOG_TRIVIAL(warning) << "RE-allocation of " << t << " cell at col = " << col << ", row = " << row << ".\n";
// BOOST_LOG_TRIVIAL(warning) << "RE-allocation of " << t << " cell at col = " << col << ", row = " << row << ".\n";
}
if (t == column_type::constant) {
auto [has_vars, min_row, max_row] = expression_row_range_visitor<var>::row_range(C);
Expand Down
Loading

0 comments on commit 09729f9

Please sign in to comment.