26 lines
261 B
C++
26 lines
261 B
C++
|
|
#include "codecrypt.h"
|
|
|
|
using namespace ccr;
|
|
|
|
void matrix::unit (uint size)
|
|
{
|
|
|
|
}
|
|
|
|
bool matrix::compute_inversion (matrix&r)
|
|
{
|
|
|
|
return false;
|
|
}
|
|
|
|
void matrix::generate_random_invertible (uint size, prng&rng)
|
|
{
|
|
|
|
}
|
|
|
|
void matrix::compute_transpose (matrix&r)
|
|
{
|
|
|
|
}
|