the need to provide neighborLength in domain dictionary is lifted. Now it is optional

This commit is contained in:
HRN
2025-02-03 23:49:11 +03:30
parent fac5576df1
commit 63bd9c9993
30 changed files with 106 additions and 76 deletions

View File

@ -24,10 +24,11 @@ Licence:
pFlow::dynamicPointStructure::dynamicPointStructure
(
systemControl& control
systemControl& control,
real maxBSphere
)
:
pointStructure(control),
pointStructure(control, maxBSphere),
velocity_
(
objectFile(

View File

@ -57,7 +57,7 @@ public:
TypeInfo("dynamicPointStructure");
explicit dynamicPointStructure(systemControl& control);
explicit dynamicPointStructure(systemControl& control, real maxBSphere);
dynamicPointStructure(const dynamicPointStructure& ps) = delete;