mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-10 15:55:37 +00:00
12 lines
208 B
C++
12 lines
208 B
C++
#include <Grid.h>
|
|
|
|
using namespace std;
|
|
using namespace Grid;
|
|
using namespace Grid::QCD;
|
|
|
|
|
|
void su3_test_mult_routine(LatticeColourMatrix &z, LatticeColourMatrix &x,LatticeColourMatrix &y)
|
|
{
|
|
mult(z,x,y);
|
|
}
|