mathstodon.xyz is one of the many independent Mastodon servers you can use to participate in the fediverse.
A Mastodon instance for maths people. We have LaTeX rendering in the web interface!

Server stats:

3K
active users

#SFINAE

0 posts0 participants0 posts today
Continued thread

New feature launch for #FormaK: a managed #KalmanFilter runtime!

I'd been stuck trying to simplify the complexity of managing a process and multiple sensor models since I introduced calibration (which added more complexity... not helping...). In the end I landed on a single tick function call with a dose of #SFINAE that handles sensors of any type and takes care of the rest under the hood.

As always, it comes in #Python and #Cpp

Blog: buckbaskin.com/blog/formak-run
Github: github.com/buckbaskin/formak/p

Continued thread

False! In some situation, using deduced return type will cause the compiler to instanciate the body of the function, and in my case it was happening a lot with concepts since I checked everything.

Suddently, I had a bunch of instanciated functions that shouldn't have, and try to called (purposefully) unimplemented functions. Those were causing compilation errors where it shouldn't