| 34 | /// \endcond |
| 35 | |
| 36 | void Initialize () { |
| 37 | ParmParse pp("amrex"); |
| 38 | pp.queryAdd("vector_growth_factor", growth_factor); |
| 39 | |
| 40 | detail::ValidateUserInput(); |
| 41 | } |
| 42 | |
| 43 | void SetGrowthFactor (Real a_factor) { |
| 44 | growth_factor = a_factor; |
nothing calls this directly
no test coverage detected