Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/vowpal_wabbit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'vowpalwabbit/global_data.cc')
-rw-r--r--vowpalwabbit/global_data.cc30
1 files changed, 16 insertions, 14 deletions
diff --git a/vowpalwabbit/global_data.cc b/vowpalwabbit/global_data.cc
index 4b8472ff..cd288b52 100644
--- a/vowpalwabbit/global_data.cc
+++ b/vowpalwabbit/global_data.cc
@@ -225,29 +225,31 @@ void add_options(vw& all, po::options_description& opts)
po::store(parsed, new_vm);
po::notify(new_vm);
- //parse all opts for a complete variable map.
- parsed = po::command_line_parser(all.args).
- style(po::command_line_style::default_style ^ po::command_line_style::allow_guessing).
- options(all.opts).allow_unregistered().run();
- po::store(parsed, new_vm);
- all.vm = new_vm;
+ for (po::variables_map::iterator it=new_vm.begin(); it!=new_vm.end(); ++it)
+ all.vm.insert(*it);
}
-bool missing_required(vw& all, po::variables_map& vm)
+void add_options(vw& all)
+{
+ add_options(all, *all.new_opts);
+ delete all.new_opts;
+}
+
+bool missing_required(vw& all)
{
- all.opts.add(*all.new_opts);//record required.
- po::variables_map new_vm;
//parse local opts once for notifications.
po::parsed_options parsed = po::command_line_parser(all.args).
style(po::command_line_style::default_style ^ po::command_line_style::allow_guessing).
options(*all.new_opts).allow_unregistered().run();
+ po::variables_map new_vm;
po::store(parsed, new_vm);
-
+ all.opts.add(*all.new_opts);
+ delete all.new_opts;
+ for (po::variables_map::iterator it=new_vm.begin(); it!=new_vm.end(); ++it)
+ all.vm.insert(*it);
+
if (new_vm.size() == 0) // required are missing;
- {
- delete all.new_opts;
- return true;
- }
+ return true;
else
return false;
}