Miguel Raggi
Miguel Raggi
I was able to fix this problem by adding `target_link_libraries(${PROJECT_NAME} LLVM)` to the `CMakeLists.txt`.
Solved it! ```python class VariableSizeProgressBar(progress_bar): def on_update(self, val, text, interrupted=False): self.total = len(self.gen) super().on_update(val,text,interrupted) ``` And my timer was calculating length wrong. Here is the correct timer. This way I...
Sure thing. I hope to have it working this weekend.
Yeah, the way it is written, it is "impossible" to fix. Maybe we could write a different way of doing it to take care of this issue. I'll think about...
Well, I don't know of a fast method, but combinations right now supports indexing. That is, you can ask it for the i-th combination, so if you simply shuffle the...
Interesting. On my machine, using clang++ 11.0.1 and boost 1.75, it just works. The iterators are supposed to be random access. Which compiler and, more importantly, which version of boost...
Huh. I don't understand. My iterators inherit from `boost::iterator_facade` which is supposed to be random access, and therefore forward iterator. And I don't see why the example runs with only...
Hi. Yes, it works on my side. Both with gcc and with clang. Can you try this "minimal" example with no discreture dependency on your machine? That way we can...