Skip to content
View miceks's full-sized avatar
Block or Report

Block or report miceks

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. kerr_comb_simulator kerr_comb_simulator Public

    Graphical application for simulating Kerr frequency combs using both the Lugiato-Lefever equation and an Ikeda map.

    MATLAB 20 2

  2. wedge wedge Public

    Geometric algebra library for C++20 using template metaprogramming and expression templates.

    C++ 1

  3. C++ runtime CRTP polymorphism C++ runtime CRTP polymorphism
    1
    # C++ runtime CRTP polymorphism
    2
    
                  
    3
    This post describes a form of C++ runtime polymorphism using inheritance over a closed set of types to achieve high performance rtti-like functionality without virtual functions. The core concept can be made to work in C++11, but some C++14 creature comforts are used in the [demo code](https://godbolt.org/z/xexWz71nW).
    4
    
                  
    5