14

我正在尝试以比long double. 我认为最简单的方法是尝试 GCC __float128,但我收到以下编译错误并且不知道如何纠正它。

exprtk.hpp: In instantiation of ‘static T exprtk::details::and_op<T>::process(exprtk::details::and_op<T>::Type, exprtk::details::and_op<T>::Type) [with T = __float128; exprtk::details::and_op<T>::Type = const __float128&]’:
exprtk.hpp:28439:10:   required from ‘void exprtk::parser<T>::load_binary_operations_map(exprtk::parser<T>::binary_op_map_t&) [with T = __float128; exprtk::parser<T>::binary_op_map_t = std::map<exprtk::details::operator_type, __float128 (*)(const __float128&, const __float128&), std::less<exprtk::details::operator_type>, std::allocator<std::pair<const exprtk::details::operator_type, __float128 (*)(const __float128&, const __float128&)> > >; typename exprtk::details::functor_t<T>::bfunc_t = __float128 (*)(const __float128&, const __float128&)]’
exprtk.hpp:15660:51:   required from ‘exprtk::parser<T>::parser(std::size_t) [with T = __float128; std::size_t = long unsigned int]’
mathtof.cpp:18:33:   required from here
exprtk.hpp:9923:105: error: call of overloaded ‘is_true(const __float128&)’ is ambiguous
          static inline T process(Type t1, Type t2) { return (details::is_true(t1) && details::is_true(t2)) ? T(1) : T(0); }
                                                                                                         ^
compilation terminated due to -Wfatal-errors.

编辑:

我试过实现我自己的is_true

<typename T>
inline bool is_true(const T v)
{
    return std::not_equal_to<T>()(T(0),v);
}
4

2 回答 2

16

将 ExprTk 专门用于自定义数字类型是相当简单的。在项目页面上找到了两个示例,它们给出了在 ExprTk 中引入新数字类型的清晰简洁的方法。

这些例子是:

  1. 自定义真实类型适配器[链接]
  2. MPFR 适配器[链接]

实型示例使用 double 类型实现了一个简单的实型。此外,它为 ExprTk 命名空间提供了必要的添加,这些添加在包含实际的 ExprTk 标头之前需要包含在内。

MPFR 适配器建立在上一个示例的基础上,并展示了如何轻松调整 MPFR/GMP 类型以用于 ExprTk。

这两个示例都包含使用新引入的类型的完整测试套件和基准测试。


这是一个示例,其中有人将他们自己的名为DScalar的类型改编为 ExprTk:

https://github.com/filiatra/gismo/blob/stable/external/exprtk_ad_adaptor.hpp

这里正在使用它:

https://github.com/filiatra/gismo/blob/stable/src/gsCore/gsFunctionExpr.hpp#L146


应该注意的是,可以简单地使用“自定义真实类型适配器”并搜索-n-用__float128替换字符串“real::type”和其他一些小的替换更改,应该一切顺利。

于 2015-09-25T03:38:48.140 回答
0

它显然不支持__float128(gcc 本身几乎不支持它,你需要 Boostfloat128.h库来做任何远程有用的事情)。

您可以尝试提供缺少的is_true(__float128&)重载,它应该相对微不足道,但我愿意赌钱不会结束。

于 2015-09-24T16:50:00.360 回答