Boost logo

Ublas :

Subject: Re: [ublas] Testing getri
From: Rutger ter Borg (rutger_at_[hidden])
Date: 2009-03-19 15:52:58


Jesse Perla wrote:
>
> Also, I am perplexed by the following:
>
> I can compile:
>
> lapack::getri(A, ipiv, lapack::optimal_workspace() );
>
> But not the following, which should work from the default function
> arguments?:
>
> lapack::getri(A, ipiv);
>
>

Didn't know that as well; default template argument types are not allowed
for function templates, and types of template arguments are not to be
deduced from a default argument type. Added an extra function signature
which fixes this, and committed it.

Cheers,

Rutger