summaryrefslogtreecommitdiffstats
path: root/planner.c
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2015-08-18 06:40:35 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-08-18 06:40:35 -0700
commitf2b883865c78b2f9c28a93d50de97077b6b6d51c (patch)
treed2fdad15f9dfb11c95d990e7abd597692ed1cb2e /planner.c
parent39794d34787a95c06eb4036e233289390c3a751f (diff)
downloadsubsurface-f2b883865c78b2f9c28a93d50de97077b6b6d51c.tar.gz
Revert "Pref. to ascent to next stop only when stop is below ceiling"
Diffstat (limited to 'planner.c')
-rw-r--r--planner.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/planner.c b/planner.c
index 42b096906..38bd22323 100644
--- a/planner.c
+++ b/planner.c
@@ -879,11 +879,6 @@ bool trial_ascent(int trial_depth, int stoplevel, int avg_depth, int bottom_time
bool clear_to_ascend = true;
char *trial_cache = NULL;
- // Don't do a trail ascent but check if the ceiling is above the next stoplevel.
- // This does not sound like a relevant question but it seems the original VPM-B implementation does that.
- if (prefs.check_ceiling_before_ascent)
- return (deco_allowed_depth(tissue_tolerance, surface_pressure, &displayed_dive, 1) <= stoplevel);
-
cache_deco_state(tissue_tolerance, &trial_cache);
while (trial_depth > stoplevel) {
int deltad = ascent_velocity(trial_depth, avg_depth, bottom_time) * TIMESTEP;