I'm trying to use boost::polygon
with boost::multiprecision
to calculate polygon differences but no matter how i try to combine the two, i'm always getting compiler errors like
assigning to 'long double' from incompatible type 'boost::multiprecision::number<boost::multiprecision::backends::cpp_int_backend<0, 0, boost::multiprecision::signed_magnitude, boost::multiprecision::unchecked, std::allocator<unsigned long long>>, boost::multiprecision::et_off>'
in
and similar places when trying to read back the results:
using DifferenceResults = std::vector<gtl::polygon_with_holes_data<ValueType>>;
DifferenceResults differenceResult;
result.value().get<DifferenceResults>(differenceResult);
Am i doing this right?
I tried different things for coordinate_traits
but at the end it looks like the types and expressions used in the lazy functions like evalAtXforYlazy refuse to support this.
It compiles fine without multiprecision.
I also tried to modify polygon_arbitryry_formation.hpp
and added explicit casts wherever needed which was promising at first but at the end lead me to overload resultion problems here which originate here.
I further tried to replace boost.multiprecision
with MPIR but they don't even have explicit cast operators but just member functions for conversions which would be even less compatible with evalAtXforYlazy and others.
What am i doing wrong?