Corrected bug with incorrect float type for fine geometry views.

这个提交包含在:
Craig Warren
2019-02-13 12:24:28 +00:00
父节点 dbeb8d902b
当前提交 3d9b934c63

查看文件

@@ -18,8 +18,6 @@
cimport numpy as np
from gprMax.constants cimport floattype_t
cpdef void define_fine_geometry(
int nx,
@@ -35,7 +33,7 @@ cpdef void define_fine_geometry(
float dy,
float dz,
np.uint32_t[:, :, :, :] ID,
floattype_t[:, :] points,
np.float32_t[:, :] points,
np.uint32_t[:, :] x_lines,
np.uint32_t[:] x_materials,
np.uint32_t[:, :] y_lines,