Re: [eigen] Specialized QR |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/eigen Archives
]
- To: eigen@xxxxxxxxxxxxxxxxxxx
- Subject: Re: [eigen] Specialized QR
- From: Hauke Heibel <hauke.heibel@xxxxxxxxxxxxxx>
- Date: Wed, 20 May 2009 13:07:45 +0200
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=biM58iFFsLoCJX/FK6WxT6ILnonG9La/PsBh4U4S94k=; b=IyK/lezDP4n/MtF7KamDEznC0rcybWeZExDEqhwMDSsIQtx05A5D9JpUpM1fN6/eZ2 chcvu/+W4ZosShrnsXn6wIKACXn3c+z7WKXT9Hr/EzXj6hxPQOZJh/CKUR+EACsa+CnE mSeov3xdXE77ZP1rJmxCce2gA4BNojqishIrg=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=qETNcihYJxPESiKzyvnTbImwFZtWAFyvwgls2ZrB68NObEoH0Ge5exIi2N5bZpXw4t zDznF/wUjf0qhVc1sSM57P52QX76Y+hn/Vewt+bxxJldr5ilfXBr1prPCQIo4q+/Fp2x 6KBBkHj6q6MMlYlt4UHXVT37m12LrKaRWUA3w=
On Wed, May 20, 2009 at 12:57 PM, Benoit Jacob <jacob.benoit.1@xxxxxxxxx> wrote:
> (Others:opinions on decompositions storing such references?)
As you can guess from the mail I just send you I would prefer a const
pointer to the matrix. The life-time requirements for both approaches
are the same while a reference can only be assigned via a constructor
prohibiting a public compute method (as I would like to see them in
all decompositions) the pointer can be assigned/set at any time.
- Hauke