Skip to content
Snippets Groups Projects

added maximum based tensor method

1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -12,7 +12,7 @@
int main(int argv, char** argc)
{
// if applicable read in size in x
const double Lx = (argv >= 3)?atof(argc[1]):LX_DEFAULT;
const double Lx = (argv >= 2)?atof(argc[1]):LX_DEFAULT;
// if applicable read in size in y
const double Ly = (argv >= 3)?atof(argc[2]):LY_DEFAULT;
// if applicable read in number of particles in z
Loading