summaryrefslogtreecommitdiffstats
path: root/deco.c
diff options
context:
space:
mode:
Diffstat (limited to 'deco.c')
-rw-r--r--deco.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/deco.c b/deco.c
index 15c61d238..3c7b9c1d7 100644
--- a/deco.c
+++ b/deco.c
@@ -280,21 +280,6 @@ double calc_surface_phase(double surface_pressure, double he_pressure, double n2
return 0;
}
-bool is_vpmb_ok(double pressure)
-{
- int ci;
- double gradient;
- double gas_tension;
-
- for (ci = 0; ci < 16; ++ci) {
- gas_tension = tissue_n2_sat[ci] + tissue_he_sat[ci] + vpmb_config.other_gases_pressure;
- gradient = gas_tension - pressure;
- if (gradient > total_gradient[ci])
- return false;
- }
- return true;
-}
-
void vpmb_start_gradient()
{
int ci;