0
我正在嘗試使用其中一個開源庫MMSP編寫程序。我寫了以下兩個文件:缺少模板參數或期望的主表達式
#include<update.hpp>
int main(int argc, char** argv)
{
MMSP::Init(argc,argv);
std::cout<<"Hello MMSP"<<std::endl;
MMSP::grid<2,double> GRID(argv[1]);
update(grid,atoi(argv[3]));
output(GRID,argv[2]);
MMSP::Finalize();
return 0;
}
這是update.hpp。
#include "MMSP.hpp"
using namespace MMSP;
template<class T,class S>
void update(T& GRID, S steps)
{
grid<2,double>update(GRID);
for(int step=0;step<steps;step++){
for (int x=x0(GRID);x<x1(GRID);x++)
for (int y=y0(GRID);y<y1(GRID);y++){
update[x][y]=GRID[x][y];
}
swap(GRID,update);
ghostswap(GRID);
}
}
但我不斷收到以下錯誤。
main.cpp:11: error: expected primary-expression before ‘,’ token
我哪裏錯了?