From a6ecbd17793c3229905040f99ceb6b4fc04d9efc Mon Sep 17 00:00:00 2001 From: Rikard Nordgren Date: Tue, 26 Nov 2024 15:47:58 +0100 Subject: [PATCH] Remove precision from common_options Only used by Pharmpy --- lib/common_options.pm | 4 ---- lib/tool.pm | 1 - 2 files changed, 5 deletions(-) diff --git a/lib/common_options.pm b/lib/common_options.pm index 432c5121..74111aff 100644 --- a/lib/common_options.pm +++ b/lib/common_options.pm @@ -1239,10 +1239,6 @@ EOF be trusted. EOF - $help_hash{-precision} = <<'EOF'; - -precision='integer' - Precision in sumo output. -EOF $help_hash{-degree} = <<'EOF'; -degree=number When tweaking initial estimates in retries/parallel_retries, this number decides the range for the diff --git a/lib/tool.pm b/lib/tool.pm index 5575eb40..2b13060b 100644 --- a/lib/tool.pm +++ b/lib/tool.pm @@ -108,7 +108,6 @@ has 'nonparametric_etas' => ( is => 'rw', isa => 'Bool', default => 0 ); has 'nonparametric_marginals' => ( is => 'rw', isa => 'Bool', default => 0 ); has 'shrinkage' => ( is => 'rw', isa => 'Bool', default => 0 ); has 'eigen_values' => ( is => 'rw', isa => 'Bool', default => 0 ); -has 'precision' => ( is => 'rw', isa => 'Num' ); has 'quick_summarize' => ( is => 'rw', isa => 'Bool', default => 0 ); has 'handle_crashes' => ( is => 'rw', isa => 'Bool', default => 1 ); has 'handle_msfo' => ( is => 'rw', isa => 'Bool', default => 0 );