Remove heap allocations on HouseholderSequence::evalTo()
Submitted by Adolfo Rodriguez Tsouroukdissian
Assigned to Nobody
Link to original bugzilla bug (#211)
Version: 3.0
Description
The evalTo(DestType& dst) method of HouseholderSequence uses a temporary matrix in its implementation. This precludes using it in scenarios involving dynamic matrices and no-malloc restrictions. In such scenarios it is customary to preallocate resources in advance. Is there any way, or is it possible at all to prevent this allocation?, to pass the preallocated temporary?, ...