From 8aad02052125ea020d4db8555e229810b320ef1d Mon Sep 17 00:00:00 2001 From: RunasSudo Date: Sun, 30 Apr 2023 15:46:13 +1000 Subject: [PATCH] Fix help text references to E-M algorithm --- src/intcox.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/intcox.rs b/src/intcox.rs index b56f1df..4aa11f4 100644 --- a/src/intcox.rs +++ b/src/intcox.rs @@ -43,11 +43,11 @@ pub struct IntCoxArgs { #[arg(long, value_enum, default_value="text")] output: OutputFormat, - /// Maximum number of E-M iterations to attempt + /// Maximum number of iterations to attempt #[arg(long, default_value="1000")] max_iterations: u32, - /// Terminate E-M algorithm when the absolute change in log-likelihood is less than this tolerance + /// Terminate algorithm when the absolute change in log-likelihood is less than this tolerance #[arg(long, default_value="0.01")] ll_tolerance: f64, }