wrtobin / las

Zero-overhead interfaces to Linear Algebraic data structures and Solvers
1 stars 1 forks source link

Mat and Vec copy constructors or operations #41

Closed jacobmerson closed 6 years ago

jacobmerson commented 6 years ago

There are some circumstances where I need to deep copy an array or matrix. e.g. for check pointing the micro scale solution.

wrtobin commented 6 years ago

We could add it to the MatBuilder and VecBuilder interfaces. It will likely require quite a bit of type introspection in some cases but we can probably add this.

jacobmerson commented 6 years ago

This functionality is not needed for my use case anymore.