mgastner / cartogram-cpp

Cartogram generator in C++
MIT License
8 stars 4 forks source link

Fix macos intersections issue #156

Closed adisidev closed 1 year ago

adisidev commented 2 years ago

Currently, running our code on macOS yields intersections. This is due to how llvm@14 deals with floating point numbers. Rolling back to llvm@13 fixes the issue.

I've updated the install instructions, and updated the CMakeLists.txt file to now look for llvm@13 instead.

Thanks to @nihalzp for meeting yesterday and discussing this with me.

This is an important and very short pull request @mgastner

adisidev commented 1 year ago

The code works fine on this branch after running xcode-select --install @mgastner