Re: [eigen] [patch] LDLt decomposition with rank-deficient matrices |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/eigen Archives
]
- To: eigen@xxxxxxxxxxxxxxxxxxx
- Subject: Re: [eigen] [patch] LDLt decomposition with rank-deficient matrices
- From: Gael Guennebaud <gael.guennebaud@xxxxxxxxx>
- Date: Thu, 17 Jun 2010 22:00:45 +0200
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:mime-version:received:in-reply-to :references:from:date:message-id:subject:to:content-type; bh=nXy9sgFnh4xM077q1+7FvP/aRrL3/71T5uMlmmLQ0rg=; b=iAU2CyUW1HwOfRnRTfYLWQyxzjbq3Culx048hXjjAuUM3HPGEde9vipxTQe53kugoN tg1JLr5YGQCRkJ+lQqlq2/pD/QjF/0Ti9jTnGaMRIxyU7fSpHLc+rNgWHBbUKxPOAv78 Sjra2orfMm5v2GIHX6QKGZy249OF70wA98yLQ=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :content-type; b=fFiqNtC5xuyk54r2qVRcn/Nulr8p+PkleB1gYTNY9Gw50NxEM7Ep1eQ6jh3zAc0IuE SQSnrdVUuxQ70t4SVj2TqbchylifiIKEb/ehCF1HN8cIwiqc27ebRpjQJWsUSZxHF2Ev oN5QPIeHuQc8wOUxU9vC0+vYuSGcvpaI7Jc3U=
hm, on the other hand for other decompositions (e.g., QR) we have
separate classes, so maybe it makes sense to have a separate class as
well ? (they can possibly share the same implementation)
gael
On Wed, Jun 16, 2010 at 7:05 PM, Gael Guennebaud
<gael.guennebaud@xxxxxxxxx> wrote:
> Finally, we can consider this option to be in pair with
> the compute* options for the other decompositions, so let's do the
> same here, i.e.:
>
> add a "int option" parameter to all LDLT ctor and to the compute
> method defaulting to "Pivoting". To disable pivoting will use the
> NoPivoting constant. That's better than meaningless booleans.