Skip to content

Commit

Permalink
[Trifocal+P2Pt] restrict refs
Browse files Browse the repository at this point in the history
  • Loading branch information
rfabbri committed Oct 24, 2023
1 parent defd792 commit a7e7e31
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions minus/minus.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ using namespace Eigen; // only used for linear solve

// TODO: parameters restrict
template <problem P, typename F>
__attribute__((always_inline)) void
__attribute__((always_inline)) inline void
minus_core<P, F>::
lsolve(
Map<const Matrix<C<F>, f::nve, f::nve>,Aligned> &matrix,
Map<const Matrix<C<F>, f::nve, 1>, Aligned > &b,
Map<Matrix<C<F>, f::nve, 1>,Aligned> &x)
Map<const Matrix<C<F>, f::nve, f::nve>,Aligned> & __restrict matrix,
Map<const Matrix<C<F>, f::nve, 1>, Aligned > & __restrict b,
Map<Matrix<C<F>, f::nve, 1>,Aligned> & __restrict x)
{
typedef Matrix<C<F>, f::nve, f::nve> MatrixType;
typedef PermutationMatrix<f::nve, f::nve> PermutationType;
Expand Down

0 comments on commit a7e7e31

Please sign in to comment.