Bristol Fashion.

This commit is contained in:
Marcel Keller
2020-04-02 18:06:14 +11:00
parent cb8e46d2f3
commit 24926df83b
98 changed files with 1266 additions and 2657 deletions

View File

@@ -7,6 +7,7 @@
#include "Tools/cpu_support.h"
#include <stdexcept>
#include <iostream>
#include <assert.h>
using namespace std;
union matrix32x8
@@ -98,6 +99,9 @@ void square64::transpose(int n_rows, int n_cols)
print();
#endif
assert(n_rows <= 64);
assert(n_cols <= 64);
square64 tmp = *this;
*this = {};