[eigen] conservative resize ... |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/eigen Archives
]
- To: eigen@xxxxxxxxxxxxxxxxxxx
- Subject: [eigen] conservative resize ...
- From: Hauke Heibel <hauke.heibel@xxxxxxxxxxxxxx>
- Date: Thu, 3 Sep 2009 17:48:06 +0200
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type; bh=UxeqaghY9WoxXjOxygyt43NkNzknYkdCjAvansbQbts=; b=MRjCDWW85tWs8oavLjPP2NA3xMASlcbkHW+oFedHIOt8NEb3zeFVQLDEc9yWgX7F2I 67PLrJNHw4aZKwtnEdK5nKBLp6bVzNw/aKkO4m+EGGHgYA8wvoZjqzSkIxwmvbMxidhS b8M52wcI9fXcCKUzG7vQD9HkbHYIQNUFpLfig=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=qFFPQmKacDwWD4wfPpOcGKUWO0K/hxc3g5J51edfJv7fdmxOmlYNsJEu7VE7+FDcxm 81tWFmasfTFSJcJ3tGIbPBhTaxLakOtRNytB/SsZ9zzQkgwRpckNQDFYFCTAVdJbFWpT za4hEWKF6X2muXW6cbbuUftjDKOH3KJm1BhSY=
Hi,
just a short question regarding my recent commit for conservative
resizing. I added an option to allow the user to set the part by which
a matrix might be extended to zero - currently via a boolean.
Initially I wanted to offer the ability to pass the scalar value
explicity which lead to problems, in particular for integer matrices.
My initial intended interface was somethink like:
void conservativeResize(int,int) // matrices with uninitialized memory
void conservativeResize(int,int,Scalar value) // matrices with new
memory set to value
void conservativeResize(int) // vectors with uninitialized memory
void conservativeResize(int,Scalar value) // vectors with new memory set to zero
Here, the last and first definitions obviously clash when Scalar is int.
Do you have any proposal how to circumvent this problem. Do we need
the uninitialized version at all for conservativeResizing? Any use
case for this?
- Hauke