Cleaned up and converted arrays to ucl_vector of numtyp4

This commit is contained in:
Trung Nguyen
2022-09-13 16:48:39 -05:00
parent 31047b4a31
commit 9c4d3db558
3 changed files with 54 additions and 58 deletions

View File

@ -256,7 +256,7 @@ class BaseAmoeba {
int _nmax, _max_tep_size, _max_fieldp_size;
int _bsorder;
UCL_D_Vec<numtyp> _thetai1, _thetai2, _thetai3;
UCL_Vector<numtyp4,numtyp4> _thetai1, _thetai2, _thetai3;
UCL_Vector<int,int> _igrid;
UCL_Vector<numtyp,numtyp> _cgrid_brick;
UCL_Vector<numtyp,numtyp> _fdip_phi1, _fdip_phi2, _fdip_sum_phi;
@ -264,9 +264,6 @@ class BaseAmoeba {
int _nzlo_out, _nzhi_out, _nylo_out, _nyhi_out, _nxlo_out, _nxhi_out;
int _ngridx, _ngridy, _ngridz, _num_grid_points;
/// buffer
UCL_H_Vec<double> hview;
// ------------------------ FORCE/ENERGY DATA -----------------------
Answer<numtyp,acctyp> *ans;