Skip to content

Commit d14d79e

Browse files
committed
Minor changes
1 parent b4316d2 commit d14d79e

File tree

2 files changed

+1
-13
lines changed

2 files changed

+1
-13
lines changed

uno/ingredients/hessian_models/quasi_newton/LBFGSHessian.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ namespace uno {
1717
fixed_objective_multiplier(fixed_objective_multiplier),
1818
memory_size(options.get_unsigned_int("quasi_newton_memory_size")) {
1919
if (fixed_objective_multiplier.has_value()) {
20-
std::cout << "L-BFGS has fixed obj multiplier " << *fixed_objective_multiplier << '\n';
20+
DEBUG << "L-BFGS Hessian model was declared with a fixed objective multiplier of " << *fixed_objective_multiplier << '\n';
2121
}
2222
}
2323

uno/linear_algebra/DenseMatrix.hpp

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
#include <cassert>
88
#include <iostream>
99
#include <vector>
10-
1110
#include "symbolic/MatrixVectorProduct.hpp"
1211
#include "symbolic/Range.hpp"
1312

@@ -93,17 +92,6 @@ namespace uno {
9392

9493
[[nodiscard]] ElementType* data();
9594
void clear();
96-
97-
// expressions
98-
/*
99-
DenseMatrix& operator=(const MatrixVectorProduct<
100-
DenseMatrix<ElementType, MatrixShape::LOWER_TRIANGULAR>&,
101-
DenseMatrix<ElementType, MatrixShape::LOWER_TRIANGULAR>&>& product) {
102-
std::cout << "Specialization of DenseMatrix::operator= for product of lower triangular matrices\n";
103-
return *this;
104-
}
105-
*/
106-
10795
void print(std::ostream& stream) const;
10896

10997
protected:

0 commit comments

Comments
 (0)