mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-09 23:45:36 +00:00
12 lines
185 B
C++
12 lines
185 B
C++
|
#include <Grid/Grid.h>
|
||
|
|
||
|
Grid::vRealD add(const Grid::vRealD &x, const Grid::vRealD &y)
|
||
|
{
|
||
|
return x+y;
|
||
|
}
|
||
|
|
||
|
Grid::vRealD sub(const Grid::vRealD &x, const Grid::vRealD &y)
|
||
|
{
|
||
|
return x-y;
|
||
|
}
|