diff --git a/omnn/extrapolator/Extrapolator.cpp b/omnn/extrapolator/Extrapolator.cpp index 176bcad47..b00d72952 100644 --- a/omnn/extrapolator/Extrapolator.cpp +++ b/omnn/extrapolator/Extrapolator.cpp @@ -16,9 +16,9 @@ using namespace boost::numeric::ublas; // Replace incorrect allocator functions with correct Boost Ublas container functions // Ensure that matrix_t, vector_t, and permutation_matrix_t are using unbounded_array_wrapper with custom_allocator -using matrix_t = boost::numeric::ublas::matrix, unbounded_array_wrapper>; -using vector_t = boost::numeric::ublas::vector>; -using permutation_matrix_t = boost::numeric::ublas::permutation_matrix>; +using matrix_t = boost::numeric::ublas::matrix, unbounded_array_wrapper>>; +using vector_t = boost::numeric::ublas::vector>>; +using permutation_matrix_t = boost::numeric::ublas::permutation_matrix>>; // This function calculates the determinant of a matrix using LU factorization auto det_fast(matrix_t matrix) {