Florian Omnès

Results 67 comments of Florian Omnès

I encountered a similar issue with the "UI" bound type as of version 3.3.0. Worked fine in 3.0.2. [problem.zip](https://github.com/user-attachments/files/23587821/problem.zip) **EDIT** It turns out that this line was added in between...

> 1. Diffs are generated on the server. There is no big issue there with memory or speed. > > 2. Changing the algorithm without confirming with real numbers that...

Also, if the decision is taken to go on with this, people managing organicmaps will need to update both clients (receiving updates) and servers (producing updates). Unless the server offers...

So, @meenbeese @biodranik I did the benchmarks with the command line tools `pymwm_diff`, with `CMAKE_BUILD_TYPE=Release` on my Linux machine (Intel(R) Core(TM) i5-1135G7 @ 2.40GHz), here are the results concerning times...

> Thank you for these detailed benchmarks @flomnes but I disagree with the conclusion you have arrived to. I still think there is value in the new approach, so I...

Just before writing thermal TS to the input directory, the `ThermalCluster::reverseCalculationOfSpinning` function is called on all thermal clusters. If `spinning=100`, it divides the values by 0, leading to `NaN`. It...

I noticed some errors when `BUILD_UI=OFF` 1. Windows https://github.com/AntaresSimulatorTeam/Antares_Simulator/actions/runs/14791492538/job/41529431269 2. Ubuntu https://github.com/AntaresSimulatorTeam/Antares_Simulator/actions/runs/14791492521/job/41529431281 Please fix errors locally with `BUILD_TOOLS=ON`

Build error > mainpanel.cpp:(.text+0x1d81): undefined reference to `Antares::Data::Study::readonly() const' > /usr/bin/ld: libantares-ui-application.a(study.cpp.o): in function `Antares::SaveStudy()': > study.cpp:(.text+0x8134): undefined reference to `Antares::Data::Study::readonly() const'

Possible example ```cpp struct Base { virtual int run() const = 0; }; template struct Derived : public Base { int run() const override { return N; } }; //...