aboutsummaryrefslogtreecommitdiff
path: root/src/driver/driver.hh
diff options
context:
space:
mode:
authorjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2003-11-19 16:53:29 +0000
committerjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2003-11-19 16:53:29 +0000
commitc5938832b234565efde9808b7016d78b3035ef91 (patch)
tree335f9ef502a82ff8aac68d16439a8fd397ea1ae6 /src/driver/driver.hh
parente7cef318b23996769b90b54cd9aba8fe47ef4e6e (diff)
make max_allowable_horizon_radius into an array parameter
so it can/must be specified for each horizon --> gives a bit more flexibility for screening out "bad" cases (alas this isn't in the thornguide yet :() git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@1205 f88db872-0e4f-0410-b76b-b9085cfa78c5
Diffstat (limited to 'src/driver/driver.hh')
-rw-r--r--src/driver/driver.hh4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/driver/driver.hh b/src/driver/driver.hh
index 91063d2..04665b9 100644
--- a/src/driver/driver.hh
+++ b/src/driver/driver.hh
@@ -117,8 +117,10 @@ struct solver_info
int max_Newton_iterations__initial,
max_Newton_iterations__subsequent;
fp max_allowable_Delta_h_over_h;
- fp max_allowable_horizon_radius;
fp Theta_norm_for_convergence;
+ fp *max_allowable_horizon_radius; // --> new[]-allocated array
+ // of size N_horizons+1 ,
+ // subscripted by hn
};
//