From 5b133d5113c0fb9009a8372732faa8e0469a8f10 Mon Sep 17 00:00:00 2001 From: Michael Chirico Date: Wed, 25 Jan 2023 08:26:58 -0800 Subject: [PATCH] Sync header signature with implementation --- src/model.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/model.h b/src/model.h index 02db7df..0ed734f 100644 --- a/src/model.h +++ b/src/model.h @@ -49,12 +49,12 @@ class Model { } // run estimate procedures - void run(string docs_pt, string res_dir); + void run(string doc_pt, string res_dir); //private: // intialize memeber varibles and biterms void model_init(); // load from docs - void load_docs(string docs_pt); + void load_docs(string dfile); // update estimate of a biterm void update_biterm(Biterm& bi);