We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb02f59 commit fb45eb0Copy full SHA for fb45eb0
sample_inputs/input_generator.cc
@@ -27,7 +27,7 @@ void dump_func(int cas,int D,int N,int M,double T){
27
printf("dumping case %d\n",cas);
28
std::string file_name = "sample" + std::to_string(cas) + ".in";
29
FILE* fp = fopen(file_name.c_str(),"w");
30
- fprintf(fp,"%d %d %d %f\n",D,N,M,T);
+ fprintf(fp,"%d %d %d\n",D,N,M);
31
std::vector<std::vector<double>> data;
32
for(int i = 0;i < N;++i){
33
std::vector<double> tmp;
0 commit comments