diff options
author | Robert C. Helling <helling@atdotde.de> | 2017-05-25 22:29:25 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-05-26 15:44:36 -0700 |
commit | 57ee5a5477c92ff4dd7b8975b1866c988556d14e (patch) | |
tree | c97be555946401540f5819078e75a6e981557b1f /core/deco.h | |
parent | b1ccd2fc43a309631ead61465e50d63f76844571 (diff) | |
download | subsurface-57ee5a5477c92ff4dd7b8975b1866c988556d14e.tar.gz |
Assemble global state of planner in a struct
Signed-off-by: Robert C. Helling <helling@atdotde.de>
Diffstat (limited to 'core/deco.h')
-rw-r--r-- | core/deco.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/core/deco.h b/core/deco.h index 03b8c59f3..581d2a791 100644 --- a/core/deco.h +++ b/core/deco.h @@ -6,11 +6,8 @@ extern "C" { #endif -extern double tolerated_by_tissue[]; extern double buehlmann_N2_t_halflife[]; -extern double tissue_inertgas_saturation[16]; -extern double buehlmann_inertgas_a[16], buehlmann_inertgas_b[16]; -extern double gf_low_pressure_this_dive; +extern struct deco_state *deco_state; extern int deco_allowed_depth(double tissues_tolerance, double surface_pressure, struct dive *dive, bool smooth); |