LINEAR++ library: AFF to LAPACK

◆ copy() [2/2]

LaTridiagFactDouble & LaTridiagFactDouble::copy ( const LaTridiagFactDouble F)
inline

Definition at line 91 of file trfd.h.

References pivot_, size_, and T_.

92 {
93  T_.copy(F.T_);
94  pivot_.copy(F.pivot_);
95  size_ = F.size_;
96 
97  return *this;
98 }
LaVectorLongInt pivot_
Definition: trfd.h:18
LaTridiagMatDouble T_
Definition: trfd.h:17