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

Block or report bradleybauer

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. evereactor evereactor Public

    Dart 3

  2. autodiff autodiff Public

    Auto differentiation on dynamic computation graphs in c++ with xtensor. PyTorch like API.

    C++

  3. cse431 cse431 Public

    Solutions to problems given in my algorithms class. There is some magic in here (hw1 q3 for ex).

    C++

  4. music_visualizer music_visualizer Public

    Shader viewer / music visualizer for Windows and Linux

    C 214 24

  5. A single, parameterized, algorithm s... A single, parameterized, algorithm solves two different enumeration problems: number partitions and k sized subsets of multisets.
    1
    # combined_algorithm.py
    2
    # A single, parameterized, algorithm solves two different enumeration problems: number partitions and k sized subsets of multisets. 
    3
    
                  
    4
    def fill_from_right(k, array, capacities, get_value):
    5
        for i in range(len(array)):