-rw-r--r-- 567 cryptattacktester-20231020/bit_matrix_cost.h raw
#ifndef bit_matrix_cost_h #define bit_matrix_cost_h #include "bigint.h" bigint bit_matrix_reduced_echelon_cost(bigint,bigint,bigint); bigint column_swaps_cost(bigint,bigint,bigint,bigint,bigint); bigint bit_matrix_column_randompermutation_cost(bigint,bigint); bigint bit_matrix_vector_mul_cost(bigint,bigint); bigint bit_matrix_sum_of_cols_straightforward_cost(bigint,bigint,bigint); bigint indices_to_vector_cost(bigint,bigint); bigint bit_matrix_sum_of_cols_viasorting_cost(bigint,bigint,bigint); bigint bit_matrix_sum_of_cols_cost(bigint,bigint,bigint); #endif