你已经派生过 gprMax
镜像自地址
https://gitee.com/sunhf/gprMax.git
已同步 2025-08-07 15:10:13 +08:00
Allow lower bound of a box to equal the upper bound
这个提交包含在:
@@ -246,7 +246,7 @@ class MPIUserInput(MainGridUserInput[MPIGrid]):
|
||||
lower_point = np.where(lower_point < 0, 0, lower_point)
|
||||
upper_point = np.where(upper_point > self.grid.size, self.grid.size, upper_point)
|
||||
|
||||
return all(lower_point < upper_point), lower_point, upper_point
|
||||
return all(lower_point <= upper_point), lower_point, upper_point
|
||||
|
||||
|
||||
class SubgridUserInput(MainGridUserInput[SubGridBaseGrid]):
|
||||
|
在新工单中引用
屏蔽一个用户