From 81a3fbb8ffd089d2b2db1444f2c95d1927481d43 Mon Sep 17 00:00:00 2001 From: astrojhgu Date: Thu, 30 Dec 2010 17:00:48 +0000 Subject: git-svn-id: file:///home/svn/opt_utilities@151 ed2142bd-67ad-457f-ba7c-d818d4011675 --- interface/pymodel.hpp | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'interface') diff --git a/interface/pymodel.hpp b/interface/pymodel.hpp index 5ef3885..8041a6b 100644 --- a/interface/pymodel.hpp +++ b/interface/pymodel.hpp @@ -51,21 +51,23 @@ namespace opt_utilities public: void attach(const std::string module_name, - const std::string arglist_name, + const std::string arg_name, + const std::string arg_value, const std::string func_name) { this->clear_param_info(); boost::python::object mod(boost::python::import(module_name.c_str())); pyfunc=mod.attr(func_name.c_str()); - boost::python::dict args(mod.attr(arglist_name.c_str())); - boost::python::list pnames(args.keys()); - int nparams=boost::python::len(pnames); + boost::python::list args_names(mod.attr(arg_name.c_str())); + boost::python::list args_values(mod.attr(arg_value.c_str())); + + int nparams=boost::python::len(args_names); for(size_t i=0;i!=nparams;++i) { - boost::python::object pname_obj=pnames[i]; + boost::python::object pname_obj=args_names[i]; std::string pname=boost::python::extract(pname_obj); typename element_type_trait::element_type pvalue= - boost::python::extract::element_type>(args.get(pname_obj)); + boost::python::extract::element_type>(args_values[i]); push_param_info(param_info(pname,pvalue)); } -- cgit v1.2.2