C ++奇怪的第三方函数构造函数

时间:2017-03-27 15:51:24

标签: c++ constructor ginac

我有第三方库,我想使用其中一个提供的构造函数。

实施例H:

/** Construct example from string and a list of symbols. The input grammar is
 *  similar to the GiNaC output format. All symbols and indices to be used
 *  in the expression must be specified in a lst in the second argument.
 *  Undefined symbols and other parser errors will throw an exception.        */
ex(const std::string &s, const ex &l);

我尝试了以下内容:

symbol x("x");

ex e("x^2",x);

不幸的是,这个构造函数的使用是不正确的。我收到以下错误消息:

  

libc ++ abi.dylib:以std :: invalid_argument类型的未捕获异常终止:find_or_insert_symbol:symbol" x"找不到

提供的所有文档都是声明上方的注释。我是C ++新手,所以我不知道出了什么问题。

我在第一个答案中尝试了以下建议:

symbol x("x");

ex expression;
ex e("x^2",expression);

std::cout << diff(e,x) << std::end

这会导致以下错误消息:

  

libc ++ abi.dylib:以std :: invalid_argument类型的未捕获异常终止:find_or_insert_symbol:symbol&#34; x&#34;未找到   (LLDB)

注意:我尝试在 diff()中使用 e 表达式

2 个答案:

答案 0 :(得分:1)

您需要提供ex引用,而不是symbol引用; 试试这个:

ex MyEx1; //This will call to the ex default constructor for MyEx1, if it exist.
ex e("x^2",MyEx1); //This will call to the ex constructor that you want to use for e.

答案 1 :(得分:0)

第二个参数应该是字符串中出现的符号的列表(更确切地说,是一个处理GiNaC :: lst的GiNaC :: ex)。这有效:

    symbol x("x");
    ex e("x^2", lst{x});

这个想法是,它不仅应与一个符号一起工作:

    symbol x("x"), y("y");
    ex e("x^2-2*x*y+y^2", lst{x,y});
    cout << diff(e, x) << endl;  // prints "2*x-2*y" or similar