File tree Expand file tree Collapse file tree 2 files changed +1
-13
lines changed
ingredients/hessian_models/quasi_newton Expand file tree Collapse file tree 2 files changed +1
-13
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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:
You can’t perform that action at this time.
0 commit comments